diff options
author | David Krause <david@cvs.openbsd.org> | 2003-03-09 06:00:59 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2003-03-09 06:00:59 +0000 |
commit | 9267dd4d69b647765876572a164a34fced4e48cd (patch) | |
tree | 25475990e6e775cf321598d4e4c8f336fdfb2a9e /regress | |
parent | f0640ee24e8fda50f9d97359ed50f36b6db41a73 (diff) |
stests may not have +x set, so prefix the call with sh
ok millert@
Diffstat (limited to 'regress')
-rw-r--r-- | regress/usr.bin/sort/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/sort/Makefile b/regress/usr.bin/sort/Makefile index 0213a0b8530..b175db2553b 100644 --- a/regress/usr.bin/sort/Makefile +++ b/regress/usr.bin/sort/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2002/09/02 20:01:44 avsm Exp $ +# $OpenBSD: Makefile,v 1.4 2003/03/09 06:00:58 david Exp $ CLEANFILES+= in in1 out xx -k xsort linecount fields @@ -7,6 +7,6 @@ REGRESS_TARGETS=do-stests # XXX - should be split up in this makefile, not in the script. # XXX - script doesn't return non-0 on failure. do-stests: ${.CURDIR}/stests - ${.CURDIR}/stests + sh ${.CURDIR}/stests .include <bsd.regress.mk> |