From e643dc23733beeb665a6841f8afe54b80388a459 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Wed, 5 Sep 2007 14:10:07 +0000 Subject: configure.ac (--enable-stage1-checking): If neither --enable-checking nor --disable-checking is provided also turn on... 2007-09-05 Richard Guenther * 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 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 2486049..57de100 100644 --- a/configure.ac +++ b/configure.ac @@ -2613,10 +2613,10 @@ AC_ARG_ENABLE(stage1-checking, [ --enable-stage1-checking@<:@=all@:>@ choose additional checking for stage1 of the compiler], [stage1_checking=--enable-checking=${enable_stage1_checking}], -[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]) AC_SUBST(stage1_checking) -- cgit v1.1