Bring over from the GCC tree:

2007-08-21  Richard Guenther  <rguenther@suse.de>

 	* configure.ac: Add types checking to stage1 checking flags.
	* configure: Regenerate.
This commit is contained in:
Ben Elliston 2007-08-21 04:15:07 +00:00
parent 891b6e885e
commit 3c527a31f3
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2007-08-21 Richard Guenther <rguenther@suse.de>
* configure.ac: Add types checking to stage1 checking flags.
* configure: Regenerate.
2007-08-18 Paul Brook <paul@codesourcery.com>
Joseph Myers <joseph@codesourcery.com>

4
configure vendored
View File

@ -11993,9 +11993,9 @@ if test "${enable_stage1_checking+set}" = set; then
stage1_checking=--enable-checking=${enable_stage1_checking}
else
if test "x$enable_checking" = xno; then
stage1_checking=--enable-checking
stage1_checking=--enable-checking=yes,types
else
stage1_checking=--enable-checking${enable_checking+=}$enable_checking
stage1_checking=--enable-checking=types${enable_checking+,}$enable_checking
fi
fi;

View File

@ -2614,9 +2614,9 @@ AC_ARG_ENABLE(stage1-checking,
of the compiler],
[stage1_checking=--enable-checking=${enable_stage1_checking}],
[if test "x$enable_checking" = xno; then
stage1_checking=--enable-checking
stage1_checking=--enable-checking=yes,types
else
stage1_checking=--enable-checking${enable_checking+=}$enable_checking
stage1_checking=--enable-checking=types${enable_checking+,}$enable_checking
fi])
AC_SUBST(stage1_checking)