diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-01-03 18:29:57 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-01-03 18:29:57 +0000 |
commit | 78a816a6ecbe42174ce11a548f4141f52903a8f7 (patch) | |
tree | bd41bcd3e565070a0f9fcace8d28c789500b060e /Makefile.in | |
parent | 6b9eb62c84c9f77b77ae7e371ff776e3f1e87149 (diff) | |
download | gcc-78a816a6ecbe42174ce11a548f4141f52903a8f7.tar.gz |
Makefile.tpl: Make GCC use a separate config.cache.
* Makefile.tpl: Make GCC use a separate config.cache.
* Makefile.in: Regenerate.
From-SVN: r75360
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 8fe85ff369f..c8dad9cc65d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -23572,6 +23572,9 @@ install-target-rda: installdirs # build modules. So GCC is a sort of hybrid. # gcc is the only module which uses GCC_FLAGS_TO_PASS. +# Don't use shared host config.cache, as it will confuse later +# directories; GCC wants slightly different values for some +# precious variables. *sigh* .PHONY: configure-gcc maybe-configure-gcc maybe-configure-gcc: configure-gcc: @@ -23609,7 +23612,7 @@ configure-gcc: libsrcdir="$$s/gcc";; \ esac; \ $(SHELL) $${libsrcdir}/configure \ - $(HOST_CONFIGARGS) $${srcdiroption} \ + $(HOST_CONFIGARGS) $${srcdiroption} --cache-file=config.cache \ || exit 1 # Don't 'make all' in gcc if it's already been made by 'bootstrap'; that |