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 /gcc | |
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 'gcc')
-rw-r--r-- | gcc/gcc_3.3.3.oe | 4 | ||||
-rw-r--r-- | gcc/gcc_3.3.4.oe | 4 | ||||
-rw-r--r-- | gcc/gcc_3.4.0.oe | 4 | ||||
-rw-r--r-- | gcc/gcc_3.4.1.oe | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/gcc/gcc_3.3.3.oe b/gcc/gcc_3.3.3.oe index 0b99411ab4..f7b9879bd5 100644 --- a/gcc/gcc_3.3.3.oe +++ b/gcc/gcc_3.3.3.oe @@ -160,9 +160,9 @@ EXTRA_OECONF_PATHS = "--with-local-prefix=${prefix}/local \ EXTRA_OECONF_DEP = "" EXTRA_OECONF_uclibc = "--disable-__cxa_atexit" EXTRA_OECONF_glibc = "--enable-__cxa_atexit" -EXTRA_OECONF += "${@get_fpu_setting(oe, d)}" +EXTRA_OECONF += "${@get_gcc_fpu_setting(oe, d)}" -def get_fpu_setting(oe, d): +def get_gcc_fpu_setting(oe, d): if oe.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: return "--with-float=soft" return "" diff --git a/gcc/gcc_3.3.4.oe b/gcc/gcc_3.3.4.oe index e794609c53..ab0b48cf16 100644 --- a/gcc/gcc_3.3.4.oe +++ b/gcc/gcc_3.3.4.oe @@ -138,9 +138,9 @@ EXTRA_OECONF_PATHS = "--with-local-prefix=${prefix}/local \ EXTRA_OECONF_DEP = "" EXTRA_OECONF_uclibc = "--disable-__cxa_atexit" EXTRA_OECONF_glibc = "--enable-__cxa_atexit" -EXTRA_OECONF += "${@get_fpu_setting(oe, d)}" +EXTRA_OECONF += "${@get_gcc_fpu_setting(oe, d)}" -def get_fpu_setting(oe, d): +def get_gcc_fpu_setting(oe, d): if oe.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: return "--with-float=soft" return "" diff --git a/gcc/gcc_3.4.0.oe b/gcc/gcc_3.4.0.oe index bf75c8bb10..081966dcae 100644 --- a/gcc/gcc_3.4.0.oe +++ b/gcc/gcc_3.4.0.oe @@ -153,9 +153,9 @@ EXTRA_OECONF_PATHS = "--with-local-prefix=${prefix}/local \ EXTRA_OECONF_DEP = "" EXTRA_OECONF_uclibc = "--disable-__cxa_atexit" EXTRA_OECONF_glibc = "--enable-__cxa_atexit" -EXTRA_OECONF += "${@get_fpu_setting(oe, d)}" +EXTRA_OECONF += "${@get_gcc_fpu_setting(oe, d)}" -def get_fpu_setting(oe, d): +def get_gcc_fpu_setting(oe, d): if oe.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: return "--with-float=soft" return "" diff --git a/gcc/gcc_3.4.1.oe b/gcc/gcc_3.4.1.oe index 69fcd31a1a..2937b65354 100644 --- a/gcc/gcc_3.4.1.oe +++ b/gcc/gcc_3.4.1.oe @@ -151,9 +151,9 @@ EXTRA_OECONF_PATHS = "--with-local-prefix=${prefix}/local \ EXTRA_OECONF_DEP = "" EXTRA_OECONF_uclibc = "--disable-__cxa_atexit" EXTRA_OECONF_glibc = "--enable-__cxa_atexit" -EXTRA_OECONF += "${@get_fpu_setting(oe, d)}" +EXTRA_OECONF += "${@get_gcc_fpu_setting(oe, d)}" -def get_fpu_setting(oe, d): +def get_gcc_fpu_setting(oe, d): if oe.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]: return "--with-float=soft" return "" |