From c0eadfee19963e68a96f8a7720d39d262a34005d Mon Sep 17 00:00:00 2001 From: Vitaly Chikunov Date: Sun, 2 Feb 2020 22:04:45 +0300 Subject: [PATCH] travis-ci: Fix build on 'OpenSSL_1_1_1-stable' It's turned out that 'OpenSSL_1_1_1-stable' does not have 'build_sw' make target. But both 'OpenSSL_1_1_1-stable' and 'master' have 'build_libs' and 'build_programs'. Fixes: cb1b5ff ("travis-ci: Speed-up openssl build") --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4dff6b5..e3eb43c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,7 +65,8 @@ before_script: - cd openssl - git describe --always --long - $SETARCH ./config shared -d --prefix=${PREFIX} --openssldir=${PREFIX} -Wl,-rpath=${PREFIX}/lib - - travis_wait $SETARCH make -s -j$(nproc) build_sw + - travis_wait $SETARCH make -s -j$(nproc) build_libs + - travis_wait $SETARCH make -s -j$(nproc) build_programs - make -s install_sw - cd .. -- 2.39.2