aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure.ac
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2004-11-02 21:16:51 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2004-11-02 21:16:51 +0000
commitde253ca48a960dd0d3ce5271c080afa3db69d7c0 (patch)
tree31305602cb10fa28129751b17c518d6490193999 /gcc/configure.ac
parentf7569f3a0f8f97141b08bb5c8ac58fcbc7eeccf2 (diff)
downloadgcc-de253ca48a960dd0d3ce5271c080afa3db69d7c0.zip
gcc-de253ca48a960dd0d3ce5271c080afa3db69d7c0.tar.gz
gcc-de253ca48a960dd0d3ce5271c080afa3db69d7c0.tar.bz2
configure.ac: Don't clear STMP_FIXINC or STMP_FIXPROTO just because we don't want to run them...
* configure.ac: Don't clear STMP_FIXINC or STMP_FIXPROTO just because we don't want to run them now; instead, set them to stmp-install-fixproto or stmp-install-fixinc. * Makefile.in (stmp-install-fixproto): New. (stmp-install-fixinc): New. * configure: Regenerate. From-SVN: r89999
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r--gcc/configure.ac8
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 6f38875..e5be4ee 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -1684,15 +1684,17 @@ then
BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD)'
if test "x$TARGET_SYSTEM_ROOT" = x; then
- STMP_FIXINC=
- STMP_FIXPROTO=
+ STMP_FIXINC=stmp-install-fixinc
+ if [ "x$STMP_FIXPROTO" != x ] ; then
+ STMP_FIXPROTO=stmp-install-fixproto
+ fi
fi
fi
# When bootstrapping from the toplevel, only run fixincludes during stage1
if test -d ../prev-gcc
then
- STMP_FIXINC=
+ STMP_FIXINC=stmp-install-fixinc
cp -R ../prev-gcc/include include
fi