diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-02-18 00:18:26 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-02-18 00:18:26 +0000 |
commit | 2590786ca23308aaff4c7c94f8d649fb030f19c7 (patch) | |
tree | 8ad27c16142a7059f6b04e1ec42b9513e639353e /Makefile.in | |
parent | fe7a4600995ea3c7322012c5510521bcf954c702 (diff) | |
download | gcc-2590786ca23308aaff4c7c94f8d649fb030f19c7.tar.gz |
* Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
CONFIG_SITE=/dev/null to forestall lossage with site configuration.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18060 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 80c67e982dd..080937a683f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1167,11 +1167,11 @@ $(CONFIGURE_TARGET_MODULES): libsrcdir="$$s/$${dir}"; \ fi; \ if [ -f $${libsrcdir}/configure ] ; then \ - $(SHELL) $${libsrcdir}/configure \ + CONFIG_SITE=/dev/null $(SHELL) $${libsrcdir}/configure \ $(CONFIG_ARGUMENTS) $${srcdiroption} \ --with-target-subdir="$(TARGET_SUBDIR)"; \ else \ - $(SHELL) $$s/configure \ + CONFIG_SITE=/dev/null $(SHELL) $$s/configure \ $(CONFIG_ARGUMENTS) $${srcdiroption} \ --with-target-subdir="$(TARGET_SUBDIR)"; \ fi; \ |