diff options
author | fx <fx@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-18 08:39:32 +0000 |
---|---|---|
committer | fx <fx@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-18 08:39:32 +0000 |
commit | 62815e5fcda55988cff282ef6a97d5b37401b14d (patch) | |
tree | c07d575741e5cfb7912a21f7b21e318f19ef8697 /Makefile.in | |
parent | 73439ee0233c6c0d202d6c7bea40a911b8c65af8 (diff) | |
download | gcc-62815e5fcda55988cff282ef6a97d5b37401b14d.tar.gz |
($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18655 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 080937a683f..55fad1244a0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1167,11 +1167,13 @@ $(CONFIGURE_TARGET_MODULES): libsrcdir="$$s/$${dir}"; \ fi; \ if [ -f $${libsrcdir}/configure ] ; then \ - CONFIG_SITE=/dev/null $(SHELL) $${libsrcdir}/configure \ + rm -f no-such-file; \ + CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \ $(CONFIG_ARGUMENTS) $${srcdiroption} \ --with-target-subdir="$(TARGET_SUBDIR)"; \ else \ - CONFIG_SITE=/dev/null $(SHELL) $$s/configure \ + rm -f no-such-file; \ + CONFIG_SITE=no-such-file $(SHELL) $$s/configure \ $(CONFIG_ARGUMENTS) $${srcdiroption} \ --with-target-subdir="$(TARGET_SUBDIR)"; \ fi; \ |