diff options
author | tobhe <tobhe@cvs.openbsd.org> | 2020-09-15 11:26:49 +0000 |
---|---|---|
committer | tobhe <tobhe@cvs.openbsd.org> | 2020-09-15 11:26:49 +0000 |
commit | 7d55b005044b61d7d4a8f8fc2ea28af704c602b3 (patch) | |
tree | 569a988a661040225ed620efe4291ab2cc8ed798 | |
parent | e99b509a70e4a6025237cee85cd7774810b30a9b (diff) |
Make sure variable assignments are followed by '\', otherwise
make(1) ignores them.
-rw-r--r-- | regress/sbin/iked/live/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/sbin/iked/live/Makefile b/regress/sbin/iked/live/Makefile index acafe2b8b7e..0dbb14c9a10 100644 --- a/regress/sbin/iked/live/Makefile +++ b/regress/sbin/iked/live/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.21 2020/09/13 11:48:10 tobhe Exp $ +# $OpenBSD: Makefile,v 1.22 2020/09/15 11:26:48 tobhe Exp $ # Copyright (c) 2020 Tobias Heider <tobhe@openbsd.org> # @@ -269,7 +269,7 @@ run-dstid-fail: REGRESS_TARGETS += run-dstid run-dstid: @echo '======= $@ ========' - flowtype=esp; + flowtype=esp; \ leftid=left-from-ca-both; \ rightid=right-from-ca-both; \ side=left; \ @@ -292,7 +292,7 @@ run-dstid: REGRESS_TARGETS += run-dstid-multi run-dstid-multi: @echo '======= $@ ========' - flowtype=esp; + flowtype=esp; \ leftid=left-from-ca-both; \ rightid=right-from-ca-both; \ side=left; srcid=$$leftid; local=${LEFT_ADDR}; peer=${RIGHT_ADDR}; \ @@ -322,7 +322,7 @@ run-cert-multi-ca: REGRESS_TARGETS += run-cert-second-altname run-cert-second-altname: @echo '======= $@ ========' - flowtype=esp; + flowtype=esp; \ leftid=left-from-ca-both-alternative; \ rightid=right-from-ca-both@openbsd.org; \ ${SETUP_CONFIGS} |