diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-01-10 10:42:16 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-01-10 10:42:16 -0800 |
commit | 9cfb5dd68c575b7c0aac270408963739a4d516d8 (patch) | |
tree | d1efbf94d85ff907d8785c76eff67f3e395cab02 /gcc | |
parent | 3f935c0b1d8fb2b84c5c6dc055fc233b4e022056 (diff) | |
download | gcc-9cfb5dd68c575b7c0aac270408963739a4d516d8.zip gcc-9cfb5dd68c575b7c0aac270408963739a4d516d8.tar.gz gcc-9cfb5dd68c575b7c0aac270408963739a4d516d8.tar.bz2 |
(Makefile, stmp-fixinc, deduced.h, stmp-fixproto):
Execute shell scripts with $(SHELL).
From-SVN: r6364
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 9ddd3ce..a451abf 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -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 |