diff options
author | Jeffrey C Honig <jeffrey.honig@windriver.com> | 2013-02-28 21:12:51 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-02 12:56:54 +0000 |
commit | bac332acb289a9d56235191ac9bff716dc195dc4 (patch) | |
tree | 9611de5212ee0fb11fd6786b1539226aa9dd530e /meta/recipes-core/ncurses | |
parent | 99ff74adceb309b38cf73d064d8bba91da50a8df (diff) | |
download | poky-bac332acb289a9d56235191ac9bff716dc195dc4.tar.gz |
Help ncurses-native find terminfo on RHEL 6
[ CQID: WIND00405305 ]
When using ncurses from sstate cache it is not able to find terminfo
for screen on RHEL 6. While RHEL 6 has /lib/terminfo, it is not
complete, the complete terminfo database is in /usr/share/terminfo. This
results failure of programs linked to ncurses, such as menuconfig.
(From OE-Core rev: b2f5c8f7dfda0bc8f07561336c8667c864d9c3bb)
Signed-off-by: Jeffrey C Honig <jeffrey.honig@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 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/ncurses/ncurses.inc index 9250e9d451..040495c84e 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_class-native = "" | 8 | DEPENDS_class-native = "" |
9 | INC_PR = "r14" | 9 | INC_PR = "r15" |
10 | 10 | ||
11 | inherit autotools binconfig multilib_header | 11 | inherit autotools binconfig multilib_header |
12 | 12 | ||
@@ -51,8 +51,8 @@ EX_TERMCAP = "" | |||
51 | EX_TERMCAP_virtclass-native = ":/etc/termcap:/usr/share/misc/termcap" | 51 | EX_TERMCAP_virtclass-native = ":/etc/termcap:/usr/share/misc/termcap" |
52 | EX_TERMCAP_virtclass-nativesdk = ":/etc/termcap:/usr/share/misc/termcap" | 52 | EX_TERMCAP_virtclass-nativesdk = ":/etc/termcap:/usr/share/misc/termcap" |
53 | EX_TERMINFO = "" | 53 | EX_TERMINFO = "" |
54 | EX_TERMINFO_virtclass-native = ":/etc/terminfo:/usr/share/misc/terminfo:/lib/terminfo" | 54 | EX_TERMINFO_virtclass-native = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo" |
55 | EX_TERMINFO_virtclass-nativesdk = ":/etc/terminfo:/usr/share/misc/terminfo:/lib/terminfo" | 55 | EX_TERMINFO_virtclass-nativesdk = ":/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo" |
56 | 56 | ||
57 | # Helper function for do_configure to allow multiple configurations | 57 | # Helper function for do_configure to allow multiple configurations |
58 | # $1 the directory to run configure in | 58 | # $1 the directory to run configure in |