diff options
| author | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-07 22:31:59 +0000 |
|---|---|---|
| committer | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-07 22:31:59 +0000 |
| commit | 8f4ab70b048223ee951d0d36444e506e85ac33a0 (patch) | |
| tree | 853e6a60e86dd9e1cfdbc3d2c8104ac7700025b6 | |
| parent | bc93d9a17e9c6922315f85eb70b842779cf3ef2e (diff) | |
| download | ppe42-gcc-8f4ab70b048223ee951d0d36444e506e85ac33a0.tar.gz ppe42-gcc-8f4ab70b048223ee951d0d36444e506e85ac33a0.zip | |
2005-05-07 Anthony Green <green@redhat.com>
PR bootstrap/21403
* configure.ac (STMP_FIXPROTO): Fix [ ] consumption problem in
x$STMP_FIXPROTO test.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99370 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 7 | ||||
| -rwxr-xr-x | gcc/configure | 2 | ||||
| -rw-r--r-- | gcc/configure.ac | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b9af6f1ae4e..eb6d27c1a20 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2005-05-07 Anthony Green <green@redhat.com> + + PR bootstrap/21403 + * configure.ac (STMP_FIXPROTO): Fix [ ] consumption problem in + x$STMP_FIXPROTO test. + * configure: Rebuilt. + 2005-05-07 Joseph S. Myers <joseph@codesourcery.com> * config/pa/pa-hpux11.h (TARGET_OS_CPP_BUILTINS): Do not define diff --git a/gcc/configure b/gcc/configure index c742fa11849..fd97aaebba9 100755 --- a/gcc/configure +++ b/gcc/configure @@ -12731,7 +12731,7 @@ then BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD)' if test "x$TARGET_SYSTEM_ROOT" = x; then - if "x$STMP_FIXPROTO" != x ; then + if test "x$STMP_FIXPROTO" != x; then STMP_FIXPROTO=stmp-install-fixproto fi fi diff --git a/gcc/configure.ac b/gcc/configure.ac index d9dcbe3c04d..21ff1fe6f03 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1693,7 +1693,7 @@ then BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD)' if test "x$TARGET_SYSTEM_ROOT" = x; then - if [ "x$STMP_FIXPROTO" != x ] ; then + if test "x$STMP_FIXPROTO" != x; then STMP_FIXPROTO=stmp-install-fixproto fi fi |

