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.
This commit is contained in:
Jim F 2009-08-24 19:20:57 +02:00
parent 4de6139e7e
commit 015719a12a

View File

@ -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