diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2012-10-23 21:12:45 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-24 12:50:45 +0100 |
commit | dfc39d7bd5a9ad803d7c44b21811881515f7de02 (patch) | |
tree | 45463dffc2dcda3f1b100f9cd0f7f105381a9a0e /meta | |
parent | b7e184508f534e2a94d08d628fb41c98a8726128 (diff) | |
download | poky-dfc39d7bd5a9ad803d7c44b21811881515f7de02.tar.gz |
nativesdk-ncurses 5.9: 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.
[YOCTO #3325]
(From OE-Core rev: a4a9d2acb60ef4ec9ae8d2ad3ca222e99fb6e986)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/ncurses/ncurses.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc index ed7f001985..cce080d402 100644 --- a/meta/recipes-core/ncurses/ncurses.inc +++ b/meta/recipes-core/ncurses/ncurses.inc | |||
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://ncurses/base/version.c;beginline=1;endline=27;md5=cbc | |||
6 | SECTION = "libs" | 6 | SECTION = "libs" |
7 | DEPENDS = "ncurses-native" | 7 | DEPENDS = "ncurses-native" |
8 | DEPENDS_virtclass-native = "" | 8 | DEPENDS_virtclass-native = "" |
9 | INC_PR = "r11" | 9 | INC_PR = "r12" |
10 | 10 | ||
11 | inherit autotools binconfig multilib_header | 11 | inherit autotools binconfig multilib_header |
12 | 12 | ||
@@ -218,7 +218,7 @@ inherit update-alternatives | |||
218 | 218 | ||
219 | ALTERNATIVE_PRIORITY = "100" | 219 | ALTERNATIVE_PRIORITY = "100" |
220 | 220 | ||
221 | ALTERNATIVE_ncurses-tools = "clear reset" | 221 | ALTERNATIVE_ncurses-tools_class-target = "clear reset" |
222 | 222 | ||
223 | BBCLASSEXTEND = "native nativesdk" | 223 | BBCLASSEXTEND = "native nativesdk" |
224 | 224 | ||