diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2005-12-14 17:56:46 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2005-12-14 17:56:46 +0000 |
commit | 1ca26cd2759f099dab48795d66fe64ec13b59ad1 (patch) | |
tree | fa026d58fc1f6c1c795f282c197d7b052f8b8dc1 /configure.in | |
parent | 174ddc670acd832f63a981938e96df11304e2aa9 (diff) | |
download | gcc-1ca26cd2759f099dab48795d66fe64ec13b59ad1.tar.gz |
configure.in: Flip the top-level bootstrap switch.
2005-12-14 Paolo Bonzini <bonzini@gnu.org>
* configure.in: Flip the top-level bootstrap switch.
* configure: Regenerate.
From-SVN: r108525
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.in b/configure.in index d3a7067855a..aa587d653ca 100644 --- a/configure.in +++ b/configure.in @@ -1742,11 +1742,10 @@ esac case "$have_compiler:$host:$target:$enable_bootstrap" in *:*:*:no) ;; - # Default behavior. (We'll) enable bootstrap if we have a compiler + # Default behavior. Enable bootstrap if we have a compiler # and we are in a native configuration. yes:$build:$build:default) - # This will become 'yes' - enable_bootstrap=no ;; + enable_bootstrap=yes ;; *:*:*:default) enable_bootstrap=no ;; |