From: Darren Tucker Date: Sun, 26 Mar 2023 03:39:45 +0000 (+1100) Subject: Specify test target if we build without OpenSSL. X-Git-Tag: V_9_4_P1~130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a948b1469f185e871160a2d70e2a0fce2858f9e;p=thirdparty%2Fopenssh-portable.git Specify test target if we build without OpenSSL. When we decide we can't use the versions of OpenSSL available, also restrict the tests we run to avoid the ones that need OpenSSL. --- diff --git a/.github/configs b/.github/configs index cf1988d71..963d806f1 100755 --- a/.github/configs +++ b/.github/configs @@ -313,6 +313,9 @@ if [ -z "${LIBCRYPTOFLAGS}" ]; then *) LIBCRYPTOFLAGS="--with-ssl-dir=${i}" ;; esac done + if [ "${LIBCRYPTOFLAGS}" = "--without-openssl" ]; then + TEST_TARGET="t-exec" + fi fi CONFIGFLAGS="${CONFIGFLAGS} ${LIBCRYPTOFLAGS}"