diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-04-01 16:32:38 +0000 |
---|---|---|
committer | Ralf Wildenhues <rwild@gcc.gnu.org> | 2010-04-01 16:32:38 +0000 |
commit | dc683a3f632650d76a0fa061c7c52d7934b5a6c0 (patch) | |
tree | b5b9f34da51535c0be523cce206b1d3c8886fb08 /configure | |
parent | e76a3fde81380ce422994e1a0fb21322d2268341 (diff) | |
download | gcc-dc683a3f632650d76a0fa061c7c52d7934b5a6c0.zip gcc-dc683a3f632650d76a0fa061c7c52d7934b5a6c0.tar.gz gcc-dc683a3f632650d76a0fa061c7c52d7934b5a6c0.tar.bz2 |
re PR bootstrap/43615 (bootstrap fails: /usr/include/gnu/stubs.h:7:27: fatal error: gnu/stubs-32.h: No such file or directory)
/:
PR bootstrap/43615
PR bootstrap/43328
Revert:
2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* configure.ac: Do not pass --enable-multilib nor
--disable-multilib in baseargs. Accept explicitly passed
--enable_multilib.
* configure: Regenerate.
From-SVN: r157916
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -7778,9 +7778,6 @@ do skip_next=$separate_arg continue ;; - --enable-multilib | --disable-multilib) - continue - ;; -*) # An option. Add it. case $ac_arg in @@ -7849,12 +7846,10 @@ if test x${is_cross_compiler} = xyes ; then target_configargs="--with-cross-host=${host_noncanonical} ${target_configargs}" fi -# Pass --enable-multilib to target dirs; default to --enable-multilib. -case $enable_multilib in -'' | yes) +# Default to --enable-multilib. +if test x${enable_multilib} = x ; then target_configargs="--enable-multilib ${target_configargs}" - ;; -esac +fi # Pass --with-newlib if appropriate. Note that target_configdirs has # changed from the earlier setting of with_newlib. |