diff options
author | Ben Elliston <bje@gnu.org> | 2007-08-21 04:15:07 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2007-08-21 04:15:07 +0000 |
commit | 3c527a31f3ed13d227622f2af19a42eece0589af (patch) | |
tree | fd6be136030698bed5becf3b45b3305fb3a789ae | |
parent | 891b6e885e8ff6692f8be695e830a929b97172ab (diff) | |
download | newlib-3c527a31f3ed13d227622f2af19a42eece0589af.zip newlib-3c527a31f3ed13d227622f2af19a42eece0589af.tar.gz newlib-3c527a31f3ed13d227622f2af19a42eece0589af.tar.bz2 |
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.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -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> @@ -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; diff --git a/configure.ac b/configure.ac index e111852..2486049 100644 --- a/configure.ac +++ b/configure.ac @@ -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) |