ncurses-native: install to libdir, not base_libdir

For target, both base_libdir and libdir in sysroot can be used, as we pass
--sysroot to the toolchain. For native, we don't do this, and we also only add
-L<sysroot>/${libdir}, not -L<sysroot>/${base_libdir}, resulting in other
native recipes (like readline-native) failing to find the ncurses libraries.

readline-native only built successfully on hosts where it could fall back to
their ncurses/termcap rather than the one in the sysroot.

(From OE-Core rev: dd05e06b89906002f68d616a6326c962e725bc54)

Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Christopher Larson 2012-01-10 13:51:18 -06:00 committed by Richard Purdie
parent b5ad3773af
commit 4807e0b3ae
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://ncurses/base/version.c;beginline=1;endline=27;md5=cbc
SECTION = "libs"
DEPENDS = "ncurses-native"
DEPENDS_virtclass-native = ""
INC_PR = "r3"
INC_PR = "r4"
inherit autotools binconfig multilib_header
@ -26,8 +26,8 @@ ENABLE_WIDEC ?= "true"
# builds.
BUILD_CPPFLAGS += "-D_GNU_SOURCE"
# tic from the -native build cannot run without setting this explicitly
BUILD_LDFLAGS_virtclass-native += "-Wl,-rpath,${base_libdir}"
# natives don't generally look in base_libdir
base_libdir_virtclass-native = "${libdir}"
# Helper function for do_configure to allow multiple configurations
# $1 the directory to run configure in