summaryrefslogtreecommitdiffstats
path: root/Makefile.tpl
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2002-12-17 20:38:05 +0000
committerJason Merrill <jason@redhat.com>2002-12-17 20:38:05 +0000
commite5e33f0eb4b368f390d43e649b807f012d1d0ef2 (patch)
tree230dffe177e9fa389b3a7a93ccc80471b4ae7884 /Makefile.tpl
parent1c6b0134389e1d6a2cf7e407826aa16157b80584 (diff)
downloadcygnal-e5e33f0eb4b368f390d43e649b807f012d1d0ef2.tar.gz
cygnal-e5e33f0eb4b368f390d43e649b807f012d1d0ef2.tar.bz2
cygnal-e5e33f0eb4b368f390d43e649b807f012d1d0ef2.zip
* Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
previous 'make bootstrap'. * Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.tpl')
-rw-r--r--Makefile.tpl11
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.tpl b/Makefile.tpl
index 9f64035a3..b2f744257 100644
--- a/Makefile.tpl
+++ b/Makefile.tpl
@@ -1134,14 +1134,17 @@ gcc/Makefile: config.status
$(HOST_CONFIGARGS) $${srcdiroption} \
|| exit 1
-# Don't remake gcc if it's already been made by 'bootstrap'; that causes
-# nothing but trouble. This wart will be fixed eventually by moving
+# Don't 'make all' in gcc if it's already been made by 'bootstrap'; that
+# causes trouble. This wart will be fixed eventually by moving
# the bootstrap behavior to this file.
.PHONY: all-gcc maybe-all-gcc
maybe-all-gcc:
all-gcc: configure-gcc
- @if [ -f gcc/xgcc ] ; then \
- exit 0 ; \
+ @if [ -f gcc/stage_last ] ; then \
+ r=`${PWD}`; export r; \
+ s=`cd $(srcdir); ${PWD}`; export s; \
+ $(SET_LIB_PATH) \
+ (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) quickstrap); \
else \
r=`${PWD}`; export r; \
s=`cd $(srcdir); ${PWD}`; export s; \