diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-04-08 19:44:08 +0000 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-04-08 19:44:08 +0000 |
commit | 938d2b7434405c3e8cf1ceeb9496ff0bac01e84c (patch) | |
tree | e6aa3d2cb93eb8b9a62112dbbb5a12fc2669dd01 /configure | |
parent | f5f8b5baf4e8df45804583c7a8494b1f257cc0ed (diff) | |
download | binutils-938d2b7434405c3e8cf1ceeb9496ff0bac01e84c.zip binutils-938d2b7434405c3e8cf1ceeb9496ff0bac01e84c.tar.gz binutils-938d2b7434405c3e8cf1ceeb9496ff0bac01e84c.tar.bz2 |
/:
Merge from gcc:
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.
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. |