diff options
author | Geoffrey Wossum <gwossum@acm.org> | 2008-03-14 08:21:07 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-03-14 08:21:07 +0000 |
commit | 6631ab02635a9f6694b20e2ccd10db64d42628ed (patch) | |
tree | 480d68ab7c6f2d679152aa44856b2828dcd53607 | |
parent | 6b639b16f3529b6b3c928ff79716fc12b6f28f53 (diff) |
uclibc.inc: Fix issue with building ld-uClibc-0.9.29.so (from uclibc-0.9.29).
This keeps OE from overriding the compilation flags uClibc would naturally
want to use. This allows OE to build a working ld-uClibc.so for the AVR32.
Not sure why this was overriding the compilation flags, or what ripple
effects taking out the override has on other platforms.
-rw-r--r-- | packages/uclibc/uclibc.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/uclibc/uclibc.inc b/packages/uclibc/uclibc.inc index 5965c0b8bd..3c8a90c589 100644 --- a/packages/uclibc/uclibc.inc +++ b/packages/uclibc/uclibc.inc @@ -70,7 +70,7 @@ UCLIBC_STAGE_PREFIX = "${STAGING_DIR_HOST}${layout_prefix}" # do_stage barfs on a CC with whitepspace, therefore put the 'HOST_CC_ARCH' in # the CFLAGS (for when building the utils). -OEMAKE_NO_CC = "'OPTIMIZATION=' 'CPU_CFLAGS=${CFLAGS}' 'STRIPTOOL=true' 'LD=${LD}' \ +OEMAKE_NO_CC = "'STRIPTOOL=true' 'LD=${LD}' \ 'LOCALE_DATA_FILENAME=${UCLIBC_LOCALE_FILE}'" EXTRA_OEMAKE = "${OEMAKE_NO_CC} 'CC=${CC}'" EXTRA_OEMAKE_task_do_populate_staging = "${OEMAKE_NO_CC}" |