diff options
author | Denis 'Gnutoo' Carikli <GNUtoo@no-log.org> | 2009-06-02 23:27:43 +0200 |
---|---|---|
committer | Denis 'Gnutoo' Carikli <GNUtoo@no-log.org> | 2009-06-02 23:27:43 +0200 |
commit | 9cc07e2cb17ce635989ca8e1c251322b9883fa03 (patch) | |
tree | 49bc2aadf30f03359c0752d56cb3bcaa10c4791e /recipes | |
parent | 1679705e3c22180b39126fdfa8a39c02e550b450 (diff) |
uclibc.inc : also exclude mips and mipsel from GNU hash.
because mips and mipsel are incompatible with GNU hash:
see: http://www.sourceware.org/ml/binutils/2006-07/msg00341.html for more details about that incompatibility
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/uclibc/uclibc.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/uclibc/uclibc.inc b/recipes/uclibc/uclibc.inc index f2f3e9b605..a9679543b8 100644 --- a/recipes/uclibc/uclibc.inc +++ b/recipes/uclibc/uclibc.inc @@ -95,7 +95,7 @@ configmangle = 's,^KERNEL_SOURCE=.*,KERNEL_SOURCE="${KERNEL_SOURCE}",g; \ s,^SHARED_LIB_LOADER_PREFIX=.*,SHARED_LIB_LOADER_PREFIX="/lib",; \ s,.*UCLIBC_HAS_WCHAR.*,UCLIBC_HAS_WCHAR=y,g; \ ${@["","s,.*UCLIBC_HAS_LOCALE.*,UCLIBC_HAS_LOCALE=y,;"][bb.data.getVar("USE_NLS", d, 1) == "yes"]} \ - ${@["","s,.*LDSO_GNU_HASH_SUPPORT.*,# LDSO_GNU_HASH_SUPPORT is not set,;"][bb.data.getVar("TARGET_ARCH", d, 1) == "avr32"]} \ + ${@["","s,.*LDSO_GNU_HASH_SUPPORT.*,# LDSO_GNU_HASH_SUPPORT is not set,;"][bb.data.getVar("TARGET_ARCH", d, 1) in ['mips', 'mipsel', 'avr32']]} \ ' CFLAGS := "${@oe_filter_out('-I\S+', '${CFLAGS}', d)}" |