summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim F <jimfriel@gmail.com>2009-08-24 17:20:57 (GMT)
committerJim F <jimfriel@gmail.com>2009-08-24 17:20:57 (GMT)
commit015719a12a11d34404b8af7f2231acfb2fc953bb (patch)
tree200e3ae5bd95d5d411fce02ffa20eabf6b07e310
parent4de6139e7ed8927c1d7c3f72f5efae697a3bd7ca (diff)
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.
-rw-r--r--scripts/build/libc/glibc.sh4
1 files changed, 2 insertions, 2 deletions
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