summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2021-04-27 12:24:10 +1000
committerDarren Tucker <dtucker@dtucker.net>2021-04-27 12:32:46 +1000
commit9f79e80dc40965c2e73164531250b83b176c1eea (patch)
treec2e6c716a1f40a8c62f4bd86b73494b31a6cfbeb
parentb3cc9fbdff2782eca79e33e02ac22450dc63bce9 (diff)
downloadopenssh-git-9f79e80dc40965c2e73164531250b83b176c1eea.tar.gz
Always build OpenSSL shared.
This is the default for current versions but we need it to test against earlier versions.
-rwxr-xr-x.github/setup_ci.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh
index 1918a423..70a444e4 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