summaryrefslogtreecommitdiff
path: root/regress/Makefile
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2015-06-09 22:41:13 -0700
committerTim Rice <tim@multitalents.net>2015-06-09 22:41:13 -0700
commita170f22baf18af0b1acf2788b8b715605f41a1f9 (patch)
tree7909520dfb276254e5ddcbe2c53164ff3ec8b875 /regress/Makefile
parentec04dc4a5515c913121bc04ed261857e68fa5c18 (diff)
Fix t12 rules for out of tree builds.
Diffstat (limited to 'regress/Makefile')
-rw-r--r--regress/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/Makefile b/regress/Makefile
index 0ea179579..cba83f4d6 100644
--- a/regress/Makefile
+++ b/regress/Makefile
@@ -182,10 +182,10 @@ t11:
182 ${TEST_SSH_SSHKEYGEN} -E sha256 -lf ${.CURDIR}/rsa_openssh.pub |\ 182 ${TEST_SSH_SSHKEYGEN} -E sha256 -lf ${.CURDIR}/rsa_openssh.pub |\
183 awk '{print $$2}' | diff - ${.CURDIR}/t11.ok 183 awk '{print $$2}' | diff - ${.CURDIR}/t11.ok
184 184
185t12.out: 185$(OBJ)/t12.out:
186 ${TEST_SSH_SSHKEYGEN} -q -t ed25519 -N '' -C 'test-comment-1234' -f $(OBJ)/$@ 186 ${TEST_SSH_SSHKEYGEN} -q -t ed25519 -N '' -C 'test-comment-1234' -f $@
187 187
188t12: t12.out 188t12: $(OBJ)/t12.out
189 ${TEST_SSH_SSHKEYGEN} -lf $(OBJ)/t12.out.pub | grep test-comment-1234 >/dev/null 189 ${TEST_SSH_SSHKEYGEN} -lf $(OBJ)/t12.out.pub | grep test-comment-1234 >/dev/null
190 190
191t-exec: ${LTESTS:=.sh} 191t-exec: ${LTESTS:=.sh}