diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-05-08 15:39:28 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-09 20:47:12 +0100 |
commit | 6b74f2461735272bd950a4f060dab6e778a36f92 (patch) | |
tree | a0a7da0b7a94881d5949f69755765e04a271887b /meta/recipes-kernel | |
parent | 8dd0e28809dba8ce6d42c127041c591664c81c59 (diff) | |
download | openembedded-core-6b74f2461735272bd950a4f060dab6e778a36f92.tar.gz openembedded-core-6b74f2461735272bd950a4f060dab6e778a36f92.tar.bz2 openembedded-core-6b74f2461735272bd950a4f060dab6e778a36f92.zip |
kmod: Use base_libdir for installing libkmod
This also helps avoid QA errors about binaries
accessing contents from /usr/lib
Also fixes emptry libkmod problem since now
the files are installed in expected place
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/kmod/kmod_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/kmod/kmod_git.bb b/meta/recipes-kernel/kmod/kmod_git.bb index 8178f1c4be..0970ca8e4b 100644 --- a/meta/recipes-kernel/kmod/kmod_git.bb +++ b/meta/recipes-kernel/kmod/kmod_git.bb @@ -12,7 +12,7 @@ CONFLICTS_${PN} += "module-init-tools-insmod-static module-init-tools-depmod mod # 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} |