diff options
author | Tim Rice <tim@multitalents.net> | 2015-02-21 18:12:10 -0800 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2015-02-21 18:12:10 -0800 |
commit | f81f1bbc5b892c8614ea740b1f92735652eb43f0 (patch) | |
tree | e988aa079e2f5b64763ca5fcc33ad43d5fb28b4b | |
parent | 2e13a1e4d22f3b503c3bfc878562cc7386a1d1ae (diff) |
out of tree build fix
-rw-r--r-- | regress/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/Makefile b/regress/Makefile index a5eaa0997..ecc688cab 100644 --- a/regress/Makefile +++ b/regress/Makefile | |||
@@ -178,10 +178,10 @@ t11: | |||
178 | awk '{print $$2}' | diff - ${.CURDIR}/t11.ok | 178 | awk '{print $$2}' | diff - ${.CURDIR}/t11.ok |
179 | 179 | ||
180 | t12.out: | 180 | t12.out: |
181 | ${TEST_SSH_SSHKEYGEN} -q -t ed25519 -N '' -C 'test-comment-1234' -f $@ | 181 | ${TEST_SSH_SSHKEYGEN} -q -t ed25519 -N '' -C 'test-comment-1234' -f $(OBJ)/$@ |
182 | 182 | ||
183 | t12: t12.out | 183 | t12: t12.out |
184 | ${TEST_SSH_SSHKEYGEN} -lf t12.out.pub | grep -q test-comment-1234 | 184 | ${TEST_SSH_SSHKEYGEN} -lf $(OBJ)/t12.out.pub | grep -q test-comment-1234 |
185 | 185 | ||
186 | t-exec: ${LTESTS:=.sh} | 186 | t-exec: ${LTESTS:=.sh} |
187 | @if [ "x$?" = "x" ]; then exit 0; fi; \ | 187 | @if [ "x$?" = "x" ]; then exit 0; fi; \ |