aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2005-05-07 22:31:59 +0000
committerAnthony Green <green@gcc.gnu.org>2005-05-07 22:31:59 +0000
commitd8e5117dc0089b61fd5aba4774c08e6dee34875a (patch)
tree853e6a60e86dd9e1cfdbc3d2c8104ac7700025b6 /gcc
parentcdfe0aa3adc25c1b340633c00b4da555100f79af (diff)
downloadgcc-d8e5117dc0089b61fd5aba4774c08e6dee34875a.zip
gcc-d8e5117dc0089b61fd5aba4774c08e6dee34875a.tar.gz
gcc-d8e5117dc0089b61fd5aba4774c08e6dee34875a.tar.bz2
re PR bootstrap/21403 (Canadian cross build fails.)
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. From-SVN: r99370
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.ac2
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b9af6f1..eb6d27c 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 c742fa1..fd97aae 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 d9dcbe3..21ff1fe 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