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. diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index 43b20b3..a83fb25 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 v0.10.2-6-g49f6