summaryrefslogtreecommitdiff
path: root/bin/ksh/Makefile
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-12-31 16:24:10 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-12-31 16:24:10 +0000
commit87d63e03ab1d6aba21f9ee9d6fbeb5a540583849 (patch)
treea84f701d4905b645e06133a65a7abdc744997b0e /bin/ksh/Makefile
parent25da10714660240933644ccacebc20435afc3b3a (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/Makefile4
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>