diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2015-08-21 13:20:51 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-08-31 19:35:06 +0200 |
commit | 227aa6c63b4acd65a5b924aa41ceccac0989b6b3 (patch) | |
tree | 572b2e21771bad5263cb453e1e57ded3b2ddd9ca /meta-oe/recipes-support/tomoyo-tools | |
parent | 51060f88e7e583d78e1f246327d7d107a11467b0 (diff) | |
download | meta-openembedded-227aa6c63b4acd65a5b924aa41ceccac0989b6b3.tar.gz |
tomoyo-tools: pass correct libdir to make
Fix QA issue when enable multilib:
ERROR: QA Issue: tomoyo-tools: Files/directories were installed but not shipped in any package:
/usr/lib
/usr/lib/libtomoyotools.so.3.0.2
/usr/lib/libtomoyotools.so.3
/usr/lib/.debug
/usr/lib/tomoyo
/usr/lib/.debug/libtomoyotools.so.3.0.2
/usr/lib/tomoyo/init_policy
[snip]
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. [installed-vs-shipped]
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Diffstat (limited to 'meta-oe/recipes-support/tomoyo-tools')
-rw-r--r-- | meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb b/meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb index adb538b7b..ac8593cb6 100644 --- a/meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb +++ b/meta-oe/recipes-support/tomoyo-tools/tomoyo-tools_2.5.0.bb | |||
@@ -18,7 +18,8 @@ FILES_${PN} += "${libdir}/tomoyo" | |||
18 | FILES_${PN}-dbg += "${libdir}/tomoyo/.debug" | 18 | FILES_${PN}-dbg += "${libdir}/tomoyo/.debug" |
19 | 19 | ||
20 | DEPENDS = "linux-libc-headers ncurses" | 20 | DEPENDS = "linux-libc-headers ncurses" |
21 | CFLAGS_append += "-D_GNU_SOURCE" | 21 | |
22 | EXTRA_OEMAKE = "-e USRLIBDIR=${libdir}" | ||
22 | 23 | ||
23 | do_compile () { | 24 | do_compile () { |
24 | oe_runmake 'CC=${CC}' | 25 | oe_runmake 'CC=${CC}' |