aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-09-05 14:10:07 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-09-05 14:10:07 +0000
commite643dc23733beeb665a6841f8afe54b80388a459 (patch)
tree47648930adc7257564b04872b60f1324eab3d45e /configure
parenta99288e554007c0ac5ecfdc7733de19f1a1965dc (diff)
downloadgcc-e643dc23733beeb665a6841f8afe54b80388a459.zip
gcc-e643dc23733beeb665a6841f8afe54b80388a459.tar.gz
gcc-e643dc23733beeb665a6841f8afe54b80388a459.tar.bz2
configure.ac (--enable-stage1-checking): If neither --enable-checking nor --disable-checking is provided also turn on...
2007-09-05 Richard Guenther <rguenther@suse.de> * configure.ac (--enable-stage1-checking): If neither --enable-checking nor --disable-checking is provided also turn on yes and types checking for stage1. * configure: Re-generate. From-SVN: r128131
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 1a37bfd..dd12627 100755
--- a/configure
+++ b/configure
@@ -11992,10 +11992,10 @@ if test "${enable_stage1_checking+set}" = set; then
enableval="$enable_stage1_checking"
stage1_checking=--enable-checking=${enable_stage1_checking}
else
- if test "x$enable_checking" = xno; then
+ if test "x$enable_checking" = xno || test "x$enable_checking" = x; then
stage1_checking=--enable-checking=yes,types
else
- stage1_checking=--enable-checking=types${enable_checking+,}$enable_checking
+ stage1_checking=--enable-checking=$enable_checking,types
fi
fi;