[oe-commits] Fahad Usman : cml1: set and export TERMINFO, to handle ncurses-native relocation

git at git.openembedded.org git at git.openembedded.org
Wed Dec 26 11:34:57 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: b036adfb868c042245cd8fba8ecc2ba53169bfea
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=b036adfb868c042245cd8fba8ecc2ba53169bfea

Author: Fahad Usman <fahad_usman at mentor.com>
Date:   Fri Dec 21 17:02:39 2012 +0500

cml1: set and export TERMINFO, to handle ncurses-native relocation

ncurses library looks at the compiled-in search path for the terminfo
database, and that path no longer exists, when using cached binaries (sstate).
Export TERMINFO pointing at the current sysroot, so the attempt to run mconf
is able to find the correct terminfo db.

Signed-off-by: Christopher Larson <chris_larson at mentor.com>

the patch was imported from meta-mentor layer on yoctoproject git server
http://git.yoctoproject.org/cgit/cgit.cgi/meta-mentor as of commit id
0cae284f294e3a2c99d9a4d79c95c25103cd8f8b

Signed-off-by: Fahad Usman <fahad_usman at mentor.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/classes/cml1.bbclass |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass
index ba44196..bb95639 100644
--- a/meta/classes/cml1.bbclass
+++ b/meta/classes/cml1.bbclass
@@ -9,10 +9,11 @@ addtask configure after do_unpack do_patch before do_compile
 
 inherit terminal
 
-OE_TERMINAL_EXPORTS += "HOST_EXTRACFLAGS HOSTLDFLAGS HOST_LOADLIBES"
+OE_TERMINAL_EXPORTS += "HOST_EXTRACFLAGS HOSTLDFLAGS HOST_LOADLIBES TERMINFO"
 HOST_EXTRACFLAGS = "${BUILD_CFLAGS} ${BUILD_LDFLAGS}"
 HOSTLDFLAGS = "${BUILD_LDFLAGS}"
 HOST_LOADLIBES = "-lncurses"
+TERMINFO = "${STAGING_DATADIR_NATIVE}/terminfo"
 
 python do_menuconfig() {
     try:





More information about the Openembedded-commits mailing list