diff options
author | 2016-09-27 11:08:32 +0000 | |
---|---|---|
committer | 2016-09-27 11:08:32 +0000 | |
commit | b38a2240e3c9104b9f17b3b5f21867f91abd385c (patch) | |
tree | 33454b2cc251669e8d539e29b2086fe8421f4b53 | |
parent | Print the type of operation space that failed as there seem to be more of (diff) | |
download | wireguard-openbsd-b38a2240e3c9104b9f17b3b5f21867f91abd385c.tar.xz wireguard-openbsd-b38a2240e3c9104b9f17b3b5f21867f91abd385c.zip |
fix dependency, fixing regress if make regress is called with a clean obj
(like the parent does).
When make is called in the parent dir, both make regress and make all
are called for the vi subdir. Need to figure out how to avoid that.
-rw-r--r-- | regress/bin/ksh/vi/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/bin/ksh/vi/Makefile b/regress/bin/ksh/vi/Makefile index 5f69a2df223..cdf45032e33 100644 --- a/regress/bin/ksh/vi/Makefile +++ b/regress/bin/ksh/vi/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2016/01/12 09:00:39 schwarze Exp $ +# $OpenBSD: Makefile,v 1.2 2016/09/27 11:08:32 otto Exp $ # # Author: Ingo Schwarze <schwarze@openbsd.org>, 2016. Public Domain. @@ -8,7 +8,7 @@ SRCS = vi.c test_vi.c CPPFLAGS = -iquote ${.CURDIR} CLEANFILES = vi.c -check test: +check test: test_vi sh ${.CURDIR}/vi.sh vi.c: ${.CURDIR}/../../../../bin/ksh/vi.c |