# HG changeset patch # User Jim F # Date 1251134457 -7200 # Node ID 7155f2a0036457cc4f33905c79d021bd94797ea3 # Parent d031a67fc49420a38beaac6e9fa0d48228bddc1b 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 -r d031a67fc494 -r 7155f2a00364 scripts/build/libc/glibc.sh --- a/scripts/build/libc/glibc.sh Wed Aug 19 19:52:04 2009 +0200 +++ b/scripts/build/libc/glibc.sh Mon Aug 24 19:20:57 2009 +0200 @@ -395,8 +395,8 @@ 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