diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-19 20:34:20 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-19 20:34:20 +0000 |
commit | 7a51cac6dd2ecdc8b25b75e249f206757d018e2a (patch) | |
tree | d0f2697ac8689ebcd01d257d29167e24173828e3 /bin/ksh/Makefile | |
parent | e7e852656e3beb5f62f8c146ba24004cfda2cf88 (diff) |
invoke /bin/sh
Diffstat (limited to 'bin/ksh/Makefile')
-rw-r--r-- | bin/ksh/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/ksh/Makefile b/bin/ksh/Makefile index 3f7e56df374..3067de4a8bd 100644 --- a/bin/ksh/Makefile +++ b/bin/ksh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1996/08/14 08:45:29 downsj Exp $ +# $OpenBSD: Makefile,v 1.5 1996/08/19 20:34:19 downsj Exp $ PROG= ksh SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \ @@ -18,10 +18,11 @@ MLINKS= ksh.1 rksh.1 .depend emacs.o: emacs.out siglist.out: config.h sh.h siglist.in siglist.sh - ${.CURDIR}/siglist.sh "${CPP} ${CPPFLAGS} ${DEFS} -I${.CURDIR}" \ + /bin/sh ${.CURDIR}/siglist.sh \ + "${CPP} ${CPPFLAGS} ${DEFS} -I${.CURDIR}" \ < ${.CURDIR}/siglist.in > siglist.out emacs.out: - ${.CURDIR}/emacs-gen.sh ${.CURDIR}/emacs.c > emacs.out + /bin/sh ${.CURDIR}/emacs-gen.sh ${.CURDIR}/emacs.c > emacs.out .include <bsd.prog.mk> |