summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2010-11-07 13:00:27 -0800
committerTim Rice <tim@multitalents.net>2010-11-07 13:00:27 -0800
commit522262f8b328e6d5951bf2a77f22080bdc123f04 (patch)
treeb1fe243988d13fd9e38c118fb1db879563841022
parentd1ece6e4a274df0447ad278f729c6f32b8e4a5e5 (diff)
- (tim) [regress/Makefile] Fixes to allow building/testing outside source
tree.
-rw-r--r--ChangeLog4
-rw-r--r--regress/Makefile18
2 files changed, 13 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index d02a2dabf..ca87f0902 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120101108
2 - (tim) [regress/Makefile] Fixes to allow building/testing outside source
3 tree.
4
120101107 520101107
2 - (dtucker) [platform.c] includes.h instead of defines.h so that we get 6 - (dtucker) [platform.c] includes.h instead of defines.h so that we get
3 the correct typedefs. 7 the correct typedefs.
diff --git a/regress/Makefile b/regress/Makefile
index d5668f08f..d80b04ea8 100644
--- a/regress/Makefile
+++ b/regress/Makefile
@@ -118,22 +118,22 @@ t7: $(OBJ)/t7.out
118 ssh-keygen -lf $(OBJ)/t7.out > /dev/null 118 ssh-keygen -lf $(OBJ)/t7.out > /dev/null
119 ssh-keygen -Bf $(OBJ)/t7.out > /dev/null 119 ssh-keygen -Bf $(OBJ)/t7.out > /dev/null
120 120
121t8.out: 121$(OBJ)/t8.out:
122 ssh-keygen -q -t dsa -N '' -f $@ 122 ssh-keygen -q -t dsa -N '' -f $@
123 123
124t8: t8.out 124t8: $(OBJ)/t8.out
125 ssh-keygen -lf t8.out > /dev/null 125 ssh-keygen -lf $(OBJ)/t8.out > /dev/null
126 ssh-keygen -Bf t8.out > /dev/null 126 ssh-keygen -Bf $(OBJ)/t8.out > /dev/null
127 127
128t9.out: 128$(OBJ)/t9.out:
129 test "${TEST_SSH_ECC}" != yes || \ 129 test "${TEST_SSH_ECC}" != yes || \
130 ssh-keygen -q -t ecdsa -N '' -f 130 ssh-keygen -q -t ecdsa -N '' -f $@
131 131
132t9: t9.out 132t9: $(OBJ)/t9.out
133 test "${TEST_SSH_ECC}" != yes || \ 133 test "${TEST_SSH_ECC}" != yes || \
134 ssh-keygen -lf t9.out > /dev/null 134 ssh-keygen -lf $(OBJ)/t9.out > /dev/null
135 test "${TEST_SSH_ECC}" != yes || \ 135 test "${TEST_SSH_ECC}" != yes || \
136 ssh-keygen -Bf t9.out > /dev/null 136 ssh-keygen -Bf $(OBJ)/t9.out > /dev/null
137 137
138t-exec: ${LTESTS:=.sh} 138t-exec: ${LTESTS:=.sh}
139 @if [ "x$?" = "x" ]; then exit 0; fi; \ 139 @if [ "x$?" = "x" ]; then exit 0; fi; \