diff options
author | Tim Rice <tim@multitalents.net> | 2015-06-09 22:41:13 -0700 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2015-06-09 22:41:13 -0700 |
commit | a170f22baf18af0b1acf2788b8b715605f41a1f9 (patch) | |
tree | 7909520dfb276254e5ddcbe2c53164ff3ec8b875 | |
parent | ec04dc4a5515c913121bc04ed261857e68fa5c18 (diff) |
Fix t12 rules for out of tree builds.
-rw-r--r-- | regress/Makefile | 6 |
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 | ||
185 | t12.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 | ||
188 | t12: t12.out | 188 | t12: $(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 | ||
191 | t-exec: ${LTESTS:=.sh} | 191 | t-exec: ${LTESTS:=.sh} |