diff options
author | Chris Larson <clarson@kergoth.com> | 2004-07-28 00:06:06 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-07-28 00:06:06 +0000 |
commit | 56391c591dc1e3ac24fcdb0f37983375925aab81 (patch) | |
tree | fef7b0262b37474fe728ca91f99903366b0c1d1a /glibc/glibc_2.3.2.oe | |
parent | 6afadfd8894b17863427fde0826b93a7a7845708 (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/packages
2004/07/27 19:05:59-05:00 handhelds.org!kergoth
In gcc and glibc, rename their fpu setting python functions to avoid stepping on one another.
BKrev: 4106edeejXi-m-cO49V5OjNDrFHVzg
Diffstat (limited to 'glibc/glibc_2.3.2.oe')
-rw-r--r-- | glibc/glibc_2.3.2.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glibc/glibc_2.3.2.oe b/glibc/glibc_2.3.2.oe index 8dc1a2b232..9019fe68c9 100644 --- a/glibc/glibc_2.3.2.oe +++ b/glibc/glibc_2.3.2.oe @@ -115,9 +115,9 @@ EXTRA_OECONF = "--without-tls --without-__thread --enable-kernel=${OLDEST_KERNEL --enable-clocale=gnu \ --enable-add-ons=linuxthreads --with-headers=${HEADERS_DIR}/include" -EXTRA_OECONF += "${@get_fpu_setting(oe, d)}" +EXTRA_OECONF += "${@get_glibc_fpu_setting(oe, d)}" -def get_fpu_setting(oe, d): +def get_glibc_fpu_setting(oe, d): if oe.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: return "--without-fp" return "" |