]> code.ossystems Code Review - openembedded-core.git/commitdiff
cross-recipes: Disable nls in gettext bbclass
authorKhem Raj <raj.khem@gmail.com>
Wed, 14 Dec 2011 09:08:45 +0000 (01:08 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 15 Dec 2011 14:17:19 +0000 (14:17 +0000)
Right now for cross recipes e.g. gcc-cross and binutils-cross
we specify --disable-nls .... --enable-nls on configure cmdline
the --enable-nls coming from gettext bbclass.

So we disable nls for all cross inheriting recipes in gettext
bbclass and then we remove the extra --disable-nls in gcc-cross
and binutils-cross

This patch needs testing. Please help

Signed-off-by: Khem Raj <raj.khem@gmail.com>
meta/classes/gettext.bbclass
meta/recipes-devtools/binutils/binutils-cross.inc
meta/recipes-devtools/gcc/gcc-configure-cross.inc
meta/recipes-devtools/gcc/gcc-cross-initial.inc
meta/recipes-devtools/gcc/gcc-cross-intermediate.inc

index 1793748af24a5a1d41676a2182e43e75cc672496..89faa30eca0d985ce4366a12e9193d87df85febf 100644 (file)
@@ -3,15 +3,15 @@ def gettext_dependencies(d):
         return ""
     if d.getVar('INHIBIT_DEFAULT_DEPS', True) and not oe.utils.inherits(d, 'cross-canadian'):
         return ""
-    if oe.utils.inherits(d, 'native'):
+    if oe.utils.inherits(d, 'native', 'cross'):
         return "gettext-minimal-native"
     return d.getVar('DEPENDS_GETTEXT', False)
 
 def gettext_oeconf(d):
-    if oe.utils.inherits(d, 'native'):
+    if oe.utils.inherits(d, 'native', 'cross'):
         return '--disable-nls'
     # Remove the NLS bits if USE_NLS is no.
-    if d.getVar('USE_NLS', True) == 'no' and not oe.utils.inherits(d, 'native', 'nativesdk', 'cross', 'cross-canadian'):
+    if d.getVar('USE_NLS', True) == 'no' and not oe.utils.inherits(d, 'nativesdk', 'cross-canadian'):
         return '--disable-nls'
     return "--enable-nls"
 
index f07907ef13d40cb304efb0b3a34aea8f90590905..80152a9b4c5c2d5f710ee4e38fe85899eeb78757 100644 (file)
@@ -8,7 +8,6 @@ EXTRA_OECONF = "--with-sysroot=${STAGING_DIR_TARGET} \
                 --program-prefix=${TARGET_PREFIX} \
                 --disable-install-libbfd \
                 --disable-werror \
-                --disable-nls \
                 --enable-poison-system-directories \
                 ${@base_contains('DISTRO_FEATURES', 'ld-is-gold', '--enable-gold=default', '', d)} \
                 ${@base_contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)}"
index d2d908140ee1591d66273c07d8dd34ffdd99b61e..3e3742349d1bd6c6f29059042e263cf33e80a86c 100644 (file)
@@ -4,7 +4,6 @@ USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibc", "no", "", d )}'
 
 EXTRA_OECONF += " --enable-poison-system-directories \
                  --with-headers=${STAGING_DIR_TARGET}${SYSTEMHEADERS} \
-                  --disable-nls \
                "
 
 INHIBIT_DEFAULT_DEPS = "1"
index d58bf7083ead0e1fa8abc39a2c9f74eb03faf705..f0e7810273ef4a850e549e68b05f853b31071c38 100644 (file)
@@ -14,7 +14,6 @@ EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${target_prefix} \
                --without-headers \
                --disable-shared \
                --disable-threads \
-               --disable-nls \
                --disable-multilib \
                --disable-__cxa_atexit \
                --enable-languages=c \
index f368ae9d7e317aba8793d46de9aad37760a07ec1..ea105e6eb0e0e952d55ab002030bc5af72acc770 100644 (file)
@@ -16,7 +16,6 @@ CROSS_TARGET_SYS_DIR_append = ".${PN}"
 # preferred linker.
 EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${target_prefix} \
                --enable-shared \
-               --disable-nls \
                --disable-multilib \
                --disable-threads \
                --enable-languages=c \