summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2013-03-11 14:52:32 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-23 13:00:52 +0100
commitc84d6fb67d2943e30ec05ca6701c39a685565b05 (patch)
tree1dbf43f6be4dfe9ca44b8654a4213cd98b394927 /meta
parentb9be8d85fa13f3204962b58f7075cff718c791da (diff)
downloadpoky-c84d6fb67d2943e30ec05ca6701c39a685565b05.tar.gz
nativesdk-ncurses 5.9: fix files were installed but not shipped
There is an warning: $ bitbake nativesdk-ncurses WARNING: QA Issue: nativesdk-ncurses: Files/directories were installed but not shipped /opt/poky/1.3+snapshot/sysroots/i686-pokysdk-linux/usr/bin/clear.ncurses /opt/poky/1.3+snapshot/sysroots/i686-pokysdk-linux/usr/bin/reset.ncurses NOTE: Tasks Summary: Attempted 533 tasks of which 521 didn't need to be rerun and all succeeded. And there is no clear or reset tool in the SDK. This is caused by: ALTERNATIVE_ncurses-tools = "clear reset" It creates clear.ncurses and reset.ncurses which are used for avoiding the conflicts with the target busybox, but SDK doesn't need them since there is no nativesdk-busybox (then no conflicts), so: ALTERNATIVE_ncurses-tools_class-target = "clear reset" will fix the problem. Cherry-pick commit dfc39d7bd5a9ad803d7c44b21811881515f7de02 [YOCTO #3325] (From OE-Core rev: 595ce662fc4f705393205f8b17adfceb2d2df187) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-core/ncurses/ncurses.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc
index e4832f56db..f9f1202e9c 100644
--- a/meta/recipes-core/ncurses/ncurses.inc
+++ b/meta/recipes-core/ncurses/ncurses.inc
@@ -244,7 +244,7 @@ inherit update-alternatives
244 244
245ALTERNATIVE_PRIORITY = "100" 245ALTERNATIVE_PRIORITY = "100"
246 246
247ALTERNATIVE_ncurses-tools = "clear reset" 247ALTERNATIVE_ncurses-tools_class-target = "clear reset"
248 248
249BBCLASSEXTEND = "native nativesdk" 249BBCLASSEXTEND = "native nativesdk"
250 250