diff options
author | 2012-08-21 15:30:48 +0000 | |
---|---|---|
committer | 2012-08-21 15:30:48 +0000 | |
commit | 4b8f04334a4ab7882c3abaf81a69347409dcaf3e (patch) | |
tree | 01f7e8f66a964f862af179f6bc58936205e8d305 | |
parent | Kill an old mips workaround; we don't support mips, just mips64. (diff) | |
download | wireguard-openbsd-4b8f04334a4ab7882c3abaf81a69347409dcaf3e.tar.xz wireguard-openbsd-4b8f04334a4ab7882c3abaf81a69347409dcaf3e.zip |
Use $(.CURDIR) to locate source files so tests still work with 'make
obj'.
ok nicm
-rw-r--r-- | regress/bin/test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/bin/test/Makefile b/regress/bin/test/Makefile index 6d77158cf0c..be9c373f84d 100644 --- a/regress/bin/test/Makefile +++ b/regress/bin/test/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.1 2011/07/09 03:58:12 nicm Exp $ +# $OpenBSD: Makefile,v 1.2 2012/08/21 15:30:48 matthew Exp $ REGRESS_TARGETS= run_test run_test: - test=/bin/test /bin/sh TEST.sh >/dev/null + test=/bin/test /bin/sh $(.CURDIR)/TEST.sh >/dev/null .include <bsd.regress.mk> |