From: Darren Tucker Date: Mon, 20 Feb 2023 07:24:39 +0000 (+1100) Subject: Always use the openssl binary configure tells us. X-Git-Tag: V_9_3_P1~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab69dda05d5268454209f529fa80f477e60d846a;p=thirdparty%2Fopenssh-portable.git Always use the openssl binary configure tells us. This fixes tests on platforms that do not have the openssl tool installed at all. --- diff --git a/regress/test-exec.sh b/regress/test-exec.sh index df43f0214..325393ce9 100644 --- a/regress/test-exec.sh +++ b/regress/test-exec.sh @@ -102,7 +102,8 @@ CONCH=conch # Tools used by multiple tests NC=$OBJ/netcat -OPENSSL_BIN="${OPENSSL_BIN:-openssl}" +# Always use the one configure tells us to, even if that's empty. +#OPENSSL_BIN="${OPENSSL_BIN:-openssl}" if [ "x$TEST_SSH_SSH" != "x" ]; then SSH="${TEST_SSH_SSH}"