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")
- 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 ..