diff options
author | Jim F <jimfriel@gmail.com> | 2009-08-24 19:20:57 +0200 |
---|---|---|
committer | Jim F <jimfriel@gmail.com> | 2009-08-24 19:20:57 +0200 |
commit | 015719a12a11d34404b8af7f2231acfb2fc953bb (patch) | |
tree | 200e3ae5bd95d5d411fce02ffa20eabf6b07e310 /scripts/build/libc | |
parent | 4de6139e7ed8927c1d7c3f72f5efae697a3bd7ca (diff) | |
download | crosstool-ng-015719a12a11d34404b8af7f2231acfb2fc953bb.tar.gz crosstool-ng-015719a12a11d34404b8af7f2231acfb2fc953bb.tar.bz2 crosstool-ng-015719a12a11d34404b8af7f2231acfb2fc953bb.zip |
glibc: fix build error caused by incorrect variable assignment
During the conversion to using bash arrays, the glibc build script
was improperly converted, and contains an incorrect variable
assignment to the config_options array.
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/glibc.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index 43b20b3a..a83fb253 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -395,8 +395,8 @@ do_libc() { esac case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in - y,) extra_config+=("--with-fp";; - ,y) extra_config+=("--without-fp";; + y,) extra_config+=("--with-fp");; + ,y) extra_config+=("--without-fp");; esac case "$(do_libc_add_ons_list ,)" in |