aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 673ac4b8..6cb0a6b5 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -22,7 +22,9 @@ if [ -n "${OPENSSL}" ]; then
./config shared no-asm no-ssl2 no-ssl3 -fPIC --prefix="$HOME/$OPENSSL_DIR"
shlib_sed
make depend
- make install
+ # avoid installing the docs
+ # https://github.com/openssl/openssl/issues/6685#issuecomment-403838728
+ make -j"$(nproc)" install_sw install_ssldirs
popd
fi
elif [ -n "${LIBRESSL}" ]; then