diff options
author | conklin <conklin@FreeBSD.org> | 1993-08-02 16:42:08 +0000 |
---|---|---|
committer | conklin <conklin@FreeBSD.org> | 1993-08-02 16:42:08 +0000 |
commit | c183859731d271a1021b69f2758d116548651c8d (patch) | |
tree | 3e652b6cbae5c8678c69dabafbd4c2086a5c9922 /bin/ed | |
parent | 9db585a2cc2e5bfa823bd9a34976f9f0cbd24c7f (diff) | |
download | FreeBSD-src-c183859731d271a1021b69f2758d116548651c8d.zip FreeBSD-src-c183859731d271a1021b69f2758d116548651c8d.tar.gz |
Use ./foo.sh, so scripts work if . is not in $PATH.
Diffstat (limited to 'bin/ed')
-rw-r--r-- | bin/ed/test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ed/test/Makefile b/bin/ed/test/Makefile index 750f388..ca45a51 100644 --- a/bin/ed/test/Makefile +++ b/bin/ed/test/Makefile @@ -6,12 +6,12 @@ all: build test build: mkscripts.sh @echo building test scripts... @chmod +x mkscripts.sh - @mkscripts.sh ${ED} + @./mkscripts.sh ${ED} test: build ckscripts.sh @echo running test scripts... @chmod +x ckscripts.sh - @ckscripts.sh ${ED} + @./ckscripts.sh ${ED} clean: rm -f *.ed *.[oz] *~ |