1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
--- a/frontends/Makefile
+++ b/frontends/Makefile
@@ -114,15 +114,15 @@ pullnews: pullnews.in $(FIXSCRIPT)
scanspool: scanspool.in $(FIXSCRIPT) ; $(FIX) scanspool.in
bunbatch: Makefile ../Makefile.global
- ( echo '#! $(SHELL)' ; echo 'exec $(BZIP2) -d -c' ) > $@
+ ( echo '#!/bin/sh' ; echo 'exec $(BZIP2) -d -c' ) > $@
chmod 755 bunbatch
c7unbatch: Makefile ../Makefile.global
- ( echo '#! $(SHELL)' ; echo 'decode | $(UNCOMPRESS)' ) > $@
+ ( echo '#!/bin/sh' ; echo 'decode | $(UNCOMPRESS)' ) > $@
chmod 755 c7unbatch
gunbatch: Makefile ../Makefile.global
- ( echo '#! $(SHELL)' ; echo 'exec $(GZIP) -d -c' ) > $@
+ ( echo '#!/bin/sh' ; echo 'exec $(GZIP) -d -c' ) > $@
chmod 755 gunbatch
## Not normally built.
|