($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a non-existent file since...
authorDave Love <fx@gcc.gnu.org>
Wed, 18 Mar 1998 08:39:32 +0000 (08:39 +0000)
committerDave Love <fx@gcc.gnu.org>
Wed, 18 Mar 1998 08:39:32 +0000 (08:39 +0000)
($(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

Makefile.in

index 080937a..55fad12 100644 (file)
@@ -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; \