diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-05-15 11:32:21 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-17 21:12:33 +0100 |
commit | 7163ebd92a799b8f000b2b6f303b20de468b5f90 (patch) | |
tree | dfc1920eaf9708dc9684eec35dc6d9af1d622059 /meta/recipes-kernel/kmod | |
parent | e8c61491cdd28caa51b567c6ce40155504f9eadb (diff) | |
download | openembedded-core-7163ebd92a799b8f000b2b6f303b20de468b5f90.tar.gz openembedded-core-7163ebd92a799b8f000b2b6f303b20de468b5f90.tar.bz2 openembedded-core-7163ebd92a799b8f000b2b6f303b20de468b5f90.zip |
Revert "kmod: Use base_libdir for installing libkmod"
The commit breaks pkgconfig and after discussing it with the kmod and udev maintainers the conclusion was reached that putting the libraries in /lib instead of /usr/lib is not supported.
This reverts commit 6b74f2461735272bd950a4f060dab6e778a36f92.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/kmod')
-rw-r--r-- | meta/recipes-kernel/kmod/kmod_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-kernel/kmod/kmod_git.bb b/meta/recipes-kernel/kmod/kmod_git.bb index d9c4d8b525..fd38d87978 100644 --- a/meta/recipes-kernel/kmod/kmod_git.bb +++ b/meta/recipes-kernel/kmod/kmod_git.bb @@ -3,7 +3,7 @@ require kmod.inc -PR = "${INC_PR}.1" +PR = "${INC_PR}.2" PROVIDES += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools" RPROVIDES_${PN} += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools" @@ -16,7 +16,7 @@ RCONFLICTS_libkmod2 += "module-init-tools-insmod-static module-init-tools-depmod # autotools set prefix to /usr, however we want them in /bin and /sbin bindir = "${base_bindir}" sbindir = "${base_sbindir}" -libdir = "${base_libdir}" +# libdir = "${base_libdir}" do_install_append () { install -dm755 ${D}${base_bindir} |