From d8aba9f3aa657f1241b7a0de3cb025327723b61d Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Tue, 10 Jul 2018 21:57:24 +0530 Subject: don't install docs when we build openssls...and do it parallel (#4327) --- .travis/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3