diff options
author | Anton Maklakov <anton@espressif.com> | 2018-06-15 13:42:44 +0800 |
---|---|---|
committer | Anton Maklakov <anton@espressif.com> | 2018-06-15 13:42:44 +0800 |
commit | b1dbc3ce9a3cbb08692efef23f11152fde379634 (patch) | |
tree | 77692da5a6757bd802013706a8b56d23dd4fff7f /scripts | |
parent | ec384f2b9fa1337c7bbcd7ed7e972516bd696b3b (diff) | |
download | crosstool-ng-b1dbc3ce9a3cbb08692efef23f11152fde379634.tar.gz crosstool-ng-b1dbc3ce9a3cbb08692efef23f11152fde379634.tar.bz2 crosstool-ng-b1dbc3ce9a3cbb08692efef23f11152fde379634.zip |
Fix a wrong name for the newlib's multilib option
Diffstat (limited to 'scripts')
-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 5c4a3562..819c7d67 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 |