aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-04-12 19:27:26 -0400
committerGitHub <noreply@github.com>2020-04-12 18:27:26 -0500
commit1e307e5e8aaa1f67f0654f9adb018b725481a481 (patch)
tree0103f16c8115f2f081c98e2fe76605e415a6fedd
parent37e11ccb998781928bea5b17b13266005261c15f (diff)
downloadcryptography-1e307e5e8aaa1f67f0654f9adb018b725481a481.tar.gz
cryptography-1e307e5e8aaa1f67f0654f9adb018b725481a481.tar.bz2
cryptography-1e307e5e8aaa1f67f0654f9adb018b725481a481.zip
Remove some remaining 1.0.1 cruft (#5193)
-rwxr-xr-x.travis/install.sh11
1 files changed, 3 insertions, 8 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 3083b411..59aa1f28 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -25,14 +25,9 @@ if [ -n "${OPENSSL}" ]; then
shlib_sed
make depend
make -j"$(nproc)"
- if [[ "${OPENSSL}" =~ 1.0.1 ]]; then
- # OpenSSL 1.0.1 doesn't support installing without the docs.
- make install
- else
- # avoid installing the docs
- # https://github.com/openssl/openssl/issues/6685#issuecomment-403838728
- make install_sw install_ssldirs
- fi
+ # avoid installing the docs
+ # https://github.com/openssl/openssl/issues/6685#issuecomment-403838728
+ make install_sw install_ssldirs
popd
fi
elif [ -n "${LIBRESSL}" ]; then