- (djm) [regress/Makefile] search for conch by path, like we do putty

This commit is contained in:
Damien Miller 2008-06-30 08:12:37 +10:00
parent 4268a136d4
commit a766cea689
2 changed files with 10 additions and 5 deletions

View File

@ -11,6 +11,7 @@
very basic regress test against Twisted Conch in "make interop" very basic regress test against Twisted Conch in "make interop"
target (conch is available in ports/devel/py-twisted/conch); target (conch is available in ports/devel/py-twisted/conch);
ok markus@ ok markus@
- (djm) [regress/Makefile] search for conch by path, like we do putty
20080629 20080629
- (djm) OpenBSD CVS Sync - (djm) OpenBSD CVS Sync
@ -4479,4 +4480,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@ passwords between UnixWare and OpenServer they will still work. OK dtucker@
$Id: ChangeLog,v 1.5037 2008/06/29 22:07:56 djm Exp $ $Id: ChangeLog,v 1.5038 2008/06/29 22:12:37 djm Exp $

View File

@ -70,9 +70,9 @@ SFTPSERVER=/usr/libexec/openssh/sftp-server
SCP=scp SCP=scp
# Interop testing # Interop testing
PLINK=/usr/local/bin/plink PLINK=plink
PUTTYGEN=/usr/local/bin/puttygen PUTTYGEN=puttygen
CONCH=/usr/local/bin/conch CONCH=conch
if [ "x$TEST_SSH_SSH" != "x" ]; then if [ "x$TEST_SSH_SSH" != "x" ]; then
SSH="${TEST_SSH_SSH}" SSH="${TEST_SSH_SSH}"
@ -116,7 +116,11 @@ if [ "x$TEST_SSH_PUTTYGEN" != "x" ]; then
esac esac
fi fi
if [ "x$TEST_SSH_CONCH" != "x" ]; then if [ "x$TEST_SSH_CONCH" != "x" ]; then
CONCH="${TEST_SSH_CONCH}" # Find real binary, if it exists
case "${TEST_SSH_CONCH}" in
/*) CONCH="${TEST_SSH_CONCH}" ;;
*) CONCH=`which ${TEST_SSH_CONCH} 2>/dev/null` ;;
esac
fi fi
# Path to sshd must be absolute for rexec # Path to sshd must be absolute for rexec