From: Ben Gras Date: Mon, 22 Aug 2005 11:16:02 +0000 (+0000) Subject: Don't assume configure is executable X-Git-Tag: v3.1.0~318 X-Git-Url: http://zhaoyanbai.com/repos/man.named-checkconf.html?a=commitdiff_plain;h=7508c1c0eaa9b42d9684ed427308f9dc50641879;p=minix.git Don't assume configure is executable --- diff --git a/commands/Makefile b/commands/Makefile index 8390508b7..76ea33288 100755 --- a/commands/Makefile +++ b/commands/Makefile @@ -12,9 +12,9 @@ usage: @false all install:: - cd $(FLEX) && ./configure --prefix=/usr && make $@ - cd $(GZIP) && ./configure --prefix=/usr && make $@ - cd $(PYTHON) && ./configure --prefix=/usr/local && make $@ + cd $(FLEX) && /bin/sh ./configure --prefix=/usr && make $@ + cd $(GZIP) && /bin/sh ./configure --prefix=/usr && make $@ + cd $(PYTHON) && /bin/sh ./configure --prefix=/usr/local && make $@ clean:: if [ -f $(FLEX)/Makefile ] ; then cd $(FLEX) && make $@; fi