diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-31 16:24:10 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-31 16:24:10 +0000 |
commit | 87d63e03ab1d6aba21f9ee9d6fbeb5a540583849 (patch) | |
tree | a84f701d4905b645e06133a65a7abdc744997b0e /bin/ksh/Makefile | |
parent | 25da10714660240933644ccacebc20435afc3b3a (diff) |
Call perl directly instead of using an sh script to find it.
OK otto@
Diffstat (limited to 'bin/ksh/Makefile')
-rw-r--r-- | bin/ksh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/Makefile b/bin/ksh/Makefile index c6d815ad2cc..6cf7301376f 100644 --- a/bin/ksh/Makefile +++ b/bin/ksh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.22 2004/12/30 21:34:24 otto Exp $ +# $OpenBSD: Makefile,v 1.23 2004/12/31 16:24:09 millert Exp $ PROG= ksh SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c \ @@ -22,6 +22,6 @@ emacs.out: emacs.c /bin/sh ${.CURDIR}/emacs-gen.sh ${.CURDIR}/emacs.c > emacs.out check test: - /bin/sh ${.CURDIR}/tests/th.sh ${.CURDIR}/tests/th -s ${.CURDIR}/tests -p ./ksh -C pdksh,sh,ksh,posix,posix-upu + /usr/bin/perl ${.CURDIR}/tests/th -s ${.CURDIR}/tests -p ./ksh -C pdksh,sh,ksh,posix,posix-upu .include <bsd.prog.mk> |