diff options
author | Dave Love <fx@gcc.gnu.org> | 1998-03-18 08:39:32 +0000 |
---|---|---|
committer | Dave Love <fx@gcc.gnu.org> | 1998-03-18 08:39:32 +0000 |
commit | 601c6475046e7220f290bfa98c8574db3650cf27 (patch) | |
tree | c07d575741e5cfb7912a21f7b21e318f19ef8697 | |
parent | 081f5e7e66fa8116bb1aeff9a154fbc788ca81f6 (diff) | |
download | gcc-601c6475046e7220f290bfa98c8574db3650cf27.zip gcc-601c6475046e7220f290bfa98c8574db3650cf27.tar.gz gcc-601c6475046e7220f290bfa98c8574db3650cf27.tar.bz2 |
($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a non-existent file since...
($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
From-SVN: r18655
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 080937a..55fad124 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; \ |