]> code.ossystems Code Review - openembedded-core.git/commitdiff
gcc-configure-sdk, gcc-configure-cross: Dont recompute USE_NLS
authorKhem Raj <raj.khem@gmail.com>
Thu, 28 Jun 2012 21:36:49 +0000 (14:36 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 29 Jun 2012 12:09:02 +0000 (13:09 +0100)
This was needed because on eglibc based builds we did not
define USE_NLS but now we define it in default config to have
a valid value so we do not need this here. Moreover it was
wrong and was not covering all cases of uclibc triplets

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/gcc/gcc-configure-cross.inc
meta/recipes-devtools/gcc/gcc-configure-sdk.inc

index 3cb3452e63a5e8a3c473088885edba072e984494..243ee55d0821bd1a87335791553d3a451c743be0 100644 (file)
@@ -1,7 +1,5 @@
 require gcc-configure-common.inc
 
-USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibc", "no", "", d )}'
-
 EXTRA_OECONF += " --enable-poison-system-directories \
                "
 
index 90e20f56c7e05c1781ca45643aa421b69425b542..51c0217095445db5749ff71333f887cfe9ca3a45 100644 (file)
@@ -1,9 +1,5 @@
 require gcc-configure-common.inc
 
-# The two lines below conflict, this needs fixing - RP
-USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibc", "no", "", d )}'
-USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibceabi", "no", "", d )}'
-
 EXTRA_OECONF_PATHS = "--with-gxx-include-dir=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}${target_includedir}/c++ \
                       --with-build-time-tools=${STAGING_DIR_NATIVE}${prefix_native}/${TARGET_SYS}/bin \
                       --with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS} \