diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-02 21:16:51 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-02 21:16:51 +0000 |
commit | 0abf128a9136437ee43464a22e00309cd27d6c91 (patch) | |
tree | 31305602cb10fa28129751b17c518d6490193999 /gcc/configure.ac | |
parent | 85a4f29a241050e176cc39fa29c17a880923a9e6 (diff) | |
download | gcc-0abf128a9136437ee43464a22e00309cd27d6c91.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89999 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r-- | gcc/configure.ac | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac index 6f388754da1..e5be4eefcc5 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 |