diff options
author | 2011-07-11 22:01:28 +0000 | |
---|---|---|
committer | 2011-07-11 22:01:28 +0000 | |
commit | 05076e69d1e604ef486289f7c352286d1014dae2 (patch) | |
tree | 877328913a3d82b80691d6f040e10c5295ffe30a | |
parent | the matchall magic shortcut requires we set c=1 to print now (diff) | |
download | wireguard-openbsd-05076e69d1e604ef486289f7c352286d1014dae2.tar.xz wireguard-openbsd-05076e69d1e604ef486289f7c352286d1014dae2.zip |
repair t24 when obj exists, like other targets.
sure tedu@
-rw-r--r-- | regress/usr.bin/grep/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/usr.bin/grep/Makefile b/regress/usr.bin/grep/Makefile index 1c05761915e..2b8581f0a8e 100644 --- a/regress/usr.bin/grep/Makefile +++ b/regress/usr.bin/grep/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2011/07/11 20:35:41 tedu Exp $ +# $OpenBSD: Makefile,v 1.15 2011/07/11 22:01:28 okan Exp $ REGRESS_TARGETS=t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t13 t14 t15 t16 t17 \ t18 t19 t20 t21 t22 t23 t24 @@ -92,9 +92,9 @@ t23: egrep -w 'word1|word2|word3' ${.CURDIR}/t23.in t24: - grep -e '' < in | diff - in - grep -x -e '' < in | diff - /dev/null - grep -f /dev/null < in | diff - /dev/null + grep -e '' < ${.CURDIR}/in | diff - ${.CURDIR}/in + grep -x -e '' < ${.CURDIR}/in | diff - /dev/null + grep -f /dev/null < ${.CURDIR}/in | diff - /dev/null .PHONY: t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t13 t14 t15 t16 t17 t18 t19 t20 |