diff options
author | Alexey Neyman <stilor@att.net> | 2018-09-21 23:37:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 23:37:29 -0700 |
commit | c426acbee764ccbf92a16e3b892b33b827c0210d (patch) | |
tree | 096e29735fcab2529e26fed46f08301d79760bb6 | |
parent | 8ab3b0b2001eefb89b135a8bcb95130d68e8d816 (diff) | |
parent | b1dbc3ce9a3cbb08692efef23f11152fde379634 (diff) | |
download | crosstool-ng-c426acbee764ccbf92a16e3b892b33b827c0210d.tar.gz crosstool-ng-c426acbee764ccbf92a16e3b892b33b827c0210d.tar.bz2 crosstool-ng-c426acbee764ccbf92a16e3b892b33b827c0210d.zip |
Merge pull request #990 from antmak/fix_newlib_multilib_opt
Fix a wrong name for the newlib's multilib option
-rw-r--r-- | scripts/build/libc/newlib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/libc/newlib.sh b/scripts/build/libc/newlib.sh index ca2f74be..2b1e5bb4 100644 --- a/scripts/build/libc/newlib.sh +++ b/scripts/build/libc/newlib.sh @@ -38,7 +38,7 @@ do_libc() { # Multilib is the default, so if it is not enabled, disable it. if [ "${CT_MULTILIB}" != "y" ]; then - extra_config+=("--disable-multilib") + newlib_opts+=("--disable-multilib") fi if [ "${CT_LIBC_NEWLIB_IO_FLOAT}" = "y" ]; then |