]> gcc.gnu.org Git - gcc.git/commitdiff
(Makefile, stmp-fixinc, deduced.h, stmp-fixproto):
authorJim Wilson <wilson@gcc.gnu.org>
Mon, 10 Jan 1994 18:42:16 +0000 (10:42 -0800)
committerJim Wilson <wilson@gcc.gnu.org>
Mon, 10 Jan 1994 18:42:16 +0000 (10:42 -0800)
Execute shell scripts with $(SHELL).

From-SVN: r6364

gcc/Makefile.in

index 9ddd3ce12517f1697937bcec09f0195d88d12d7a..a451abf7db435063886a815c8fb1c99a30400287 100644 (file)
@@ -487,7 +487,7 @@ BYTECODE_H = bytecode.h bc-emit.h bc-optab.h
 
 Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/version.c \
    $(srcdir)/config/$(xmake_file) $(srcdir)/config/$(tmake_file)
-       sh config.status
+       $(SHELL) config.status
 
 all.internal: start.encap rest.encap
 # This is what to compile if making a cross-compiler.
@@ -1543,7 +1543,7 @@ stmp-fixinc: $(srcdir)/$(FIXINCLUDES) gsyslimits.h fixinc.ready
          for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
            if [ -d $$dir ]; \
            then \
-             $(srcdir)/$(FIXINCLUDES) include $$dir $(srcdir) "`pwd`/xgcc -B`pwd`/"; \
+             $(SHELL) $(srcdir)/$(FIXINCLUDES) include $$dir $(srcdir) "`pwd`/xgcc -B`pwd`/"; \
            else true; fi; \
          done; \
        else true; \
@@ -1575,7 +1575,7 @@ objc-headers: stmp-fixinc
 deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
        CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -I. -I$(srcdir) -Iinclude -I${SYSTEM_HEADER_DIR}"; \
          export CC; \
-         $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h
+         $(SHELL) $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h
        mv tmp-deduced.h deduced.h
 
 gen-protos: gen-protos.o scan.o $(HOST_LIBDEPS)
@@ -1625,7 +1625,7 @@ stmp-fixproto: fixhdr.ready fixproto stmp-headers
        if [ -f include/fixed ] ; then true; \
        else \
          CPP="$(GCC_FOR_TARGET) -E"; export CPP; \
-           ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
+           $(SHELL) ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
          touch include/fixed; \
        fi
        touch stmp-fixproto
This page took 0.067226 seconds and 5 git commands to generate.