From: Richard Guenther Date: Wed, 5 Sep 2007 14:10:07 +0000 (+0000) Subject: configure.ac (--enable-stage1-checking): If neither --enable-checking nor --disable... X-Git-Tag: releases/gcc-4.3.0~2870 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e643dc23733beeb665a6841f8afe54b80388a459;p=thirdparty%2Fgcc.git 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 --- diff --git a/ChangeLog b/ChangeLog index 234f2921cd6c..d4e4ef34312a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +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. + 2007-08-30 Krister Walfridsson * MAINTAINERS (OS Port Maintainers): Add myself as NetBSD maintainer. diff --git a/configure b/configure index 1a37bfd6b33d..dd12627fcd42 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; diff --git a/configure.ac b/configure.ac index 2486049cf18b..57de10003ff2 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)