mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-19 03:06:42 +00:00
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:
parent
4de6139e7e
commit
015719a12a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user