diff options
author | Mark Eichin <eichin@cygnus> | 1993-11-09 23:32:04 +0000 |
---|---|---|
committer | Mark Eichin <eichin@cygnus> | 1993-11-09 23:32:04 +0000 |
commit | fb682d6970089e99071239fa4a0b6c2a66333652 (patch) | |
tree | d3766ffcb7492539b334b7c507f767fa940094f6 /build-all.mk | |
parent | c8f1aa31aa6a27bf30ddbc2b197108e755ccef8e (diff) | |
download | gdb-fb682d6970089e99071239fa4a0b6c2a66333652.zip gdb-fb682d6970089e99071239fa4a0b6c2a66333652.tar.gz gdb-fb682d6970089e99071239fa4a0b6c2a66333652.tar.bz2 |
don't ever use sh explicitly
for lynxos, set SHELL=/bin/bash
Diffstat (limited to 'build-all.mk')
-rw-r--r-- | build-all.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build-all.mk b/build-all.mk index 5fda258..1b0fe90 100644 --- a/build-all.mk +++ b/build-all.mk @@ -181,12 +181,14 @@ ifeq ($(canonhost),i386-lynxos) TARGETS = $(NATIVE) CC = /bin/gcc all: all-cygnus +SHELL=/bin/bash endif ifeq ($(canonhost),m68k-lynxos) TARGETS = $(NATIVE) CC = /bin/gcc all: all-cygnus +SHELL=/bin/bash endif @@ -197,7 +199,8 @@ FLAGS_TO_PASS := \ "CXXFLAGS=$(CXXFLAGS)" \ "host=$(canonhost)" \ "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \ - "RELEASE_TAG=$(RELEASE_TAG)" + "RELEASE_TAG=$(RELEASE_TAG)" \ + "SHELL=$(SHELL)" all-emacs: @echo build started at `date` |