From 446b097ec8a226f9acb5d7eb0fe94e6964ecf01b Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Mon, 22 Nov 1999 09:48:04 +0000 Subject: [PATCH] Make the tests work again. --- gnu/usr.bin/grep/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/usr.bin/grep/Makefile b/gnu/usr.bin/grep/Makefile index 5c40de5f002e..b1875fedabe5 100644 --- a/gnu/usr.bin/grep/Makefile +++ b/gnu/usr.bin/grep/Makefile @@ -31,8 +31,8 @@ check: all @failed=0; total=0; \ for tst in ${TESTS}; do \ total=$$(($$total+1)); \ - if GREP=${.OBJDIR}/${PROG} srcdir=${GREPDIR}/tests \ - ${GREPDIR}/tests/$$tst; then \ + if GREP=${.OBJDIR}/${PROG} srcdir=${.CURDIR}/tests \ + ${.CURDIR}/tests/$$tst; then \ echo "PASS: $$tst"; \ else \ failed=$$(($$failed+1)); \