glibc: fix build error caused by incorrect variable assignment
authorJim F <jimfriel@gmail.com>
Mon Aug 24 19:20:57 2009 +0200 (2009-08-24)
changeset 14867155f2a00364
parent 1485 d031a67fc494
child 1487 79c3cd3818d9
child 1491 ae44a02d67fb
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.
scripts/build/libc/glibc.sh
     1.1 --- a/scripts/build/libc/glibc.sh	Wed Aug 19 19:52:04 2009 +0200
     1.2 +++ b/scripts/build/libc/glibc.sh	Mon Aug 24 19:20:57 2009 +0200
     1.3 @@ -395,8 +395,8 @@
     1.4      esac
     1.5  
     1.6      case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
     1.7 -        y,) extra_config+=("--with-fp";;
     1.8 -        ,y) extra_config+=("--without-fp";;
     1.9 +        y,) extra_config+=("--with-fp");;
    1.10 +        ,y) extra_config+=("--without-fp");;
    1.11      esac
    1.12  
    1.13      case "$(do_libc_add_ons_list ,)" in