From: Darren Tucker Date: Tue, 27 Apr 2021 02:24:10 +0000 (+1000) Subject: Always build OpenSSL shared. X-Git-Tag: V_8_7_P1~217 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f79e80dc40965c2e73164531250b83b176c1eea;p=thirdparty%2Fopenssh-portable.git Always build OpenSSL shared. This is the default for current versions but we need it to test against earlier versions. --- diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh index 1918a4236..70a444e4e 100755 --- a/.github/setup_ci.sh +++ b/.github/setup_ci.sh @@ -99,7 +99,7 @@ if [ ! -z "${INSTALL_OPENSSL}" ]; then git clone https://github.com/openssl/openssl.git && cd ${HOME}/openssl && git checkout ${INSTALL_OPENSSL} && - ./config no-threads ${SSLCONFOPTS} \ + ./config no-threads shared ${SSLCONFOPTS} \ --prefix=/opt/openssl && make && sudo make install_sw) fi