From 015719a12a11d34404b8af7f2231acfb2fc953bb Mon Sep 17 00:00:00 2001 From: Jim F Date: Mon, 24 Aug 2009 19:20:57 +0200 Subject: 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. --- scripts/build/libc/glibc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/build/libc') 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 -- cgit v1.2.3