mirror of git://anongit.mindrot.org/openssh.git
- (tim) [regress/kextype.sh] Not all platforms have time in /usr/bin.
Feedback from dtucker@
This commit is contained in:
parent
c10aeaa8f2
commit
e426f5e932
|
@ -1,3 +1,7 @@
|
|||
20101109
|
||||
- (tim) [regress/kextype.sh] Not all platforms have time in /usr/bin.
|
||||
Feedback from dtucker@
|
||||
|
||||
20101108
|
||||
- (tim) [regress/Makefile] Fixes to allow building/testing outside source
|
||||
tree.
|
||||
|
|
|
@ -3,7 +3,11 @@
|
|||
|
||||
tid="login with different key types"
|
||||
|
||||
TIME=/usr/bin/time
|
||||
TIME=`which time` 2>/dev/null
|
||||
if test ! -x "$TIME"; then
|
||||
TIME=""
|
||||
fi
|
||||
|
||||
cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak
|
||||
cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak
|
||||
|
||||
|
|
Loading…
Reference in New Issue