diff options
author | Anthony Green <green@redhat.com> | 2005-05-07 22:31:59 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2005-05-07 22:31:59 +0000 |
commit | d8e5117dc0089b61fd5aba4774c08e6dee34875a (patch) | |
tree | 853e6a60e86dd9e1cfdbc3d2c8104ac7700025b6 /gcc/configure.ac | |
parent | cdfe0aa3adc25c1b340633c00b4da555100f79af (diff) | |
download | gcc-d8e5117dc0089b61fd5aba4774c08e6dee34875a.tar.gz |
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/configure.ac')
-rw-r--r-- | gcc/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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 |