diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2013-04-23 15:26:12 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-30 20:59:12 +0100 |
commit | 4128b217c6760c371115c1dcc16cb7c5135f784a (patch) | |
tree | 8204473a9ff74ae4275e34c421e3be77433bf0bc /meta/recipes-core/ncurses | |
parent | 8c5bbbe9714c1646c98bdd801953b6efe099bf3f (diff) | |
download | poky-4128b217c6760c371115c1dcc16cb7c5135f784a.tar.gz |
ncurses: Fix problems expanding ncurses-libtinfo when in IMAGE_INSTALL
The ncurses package was generating the following error as a result
of not specifing the PACKAGES_DYNAMIC correctly. This error only
appear when using the IMAGE_INSTALL list that has been expanded by
the hob or from the pkgdata.
ERROR: Nothing RPROVIDES 'ncurses-libtinfo'
The dynamic packages are named using "${PN}-lib%s". So we check for
${PN}-lib*
(From OE-Core rev: 67dd4e31272918e08b65b5c8d5d6b00e814dbf7f)
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/ncurses')
-rw-r--r-- | meta/recipes-core/ncurses/ncurses.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc index bcb9c94395..2ed1bba53e 100644 --- a/meta/recipes-core/ncurses/ncurses.inc +++ b/meta/recipes-core/ncurses/ncurses.inc | |||
@@ -42,6 +42,8 @@ EXCONFIG_ARGS_virtclass-nativesdk = " \ | |||
42 | --with-chtype='long' \ | 42 | --with-chtype='long' \ |
43 | --with-mmask-t='long'" | 43 | --with-mmask-t='long'" |
44 | 44 | ||
45 | PACKAGES_DYNAMIC = "^${PN}-lib.*" | ||
46 | |||
45 | # Fall back to the host termcap / terminfo for -nativesdk and -native | 47 | # Fall back to the host termcap / terminfo for -nativesdk and -native |
46 | # The reality is a work around for strange problems with things like | 48 | # The reality is a work around for strange problems with things like |
47 | # "bitbake -c menuconfig busybox" where it cannot find the terminfo | 49 | # "bitbake -c menuconfig busybox" where it cannot find the terminfo |