From: Richard Levitte Date: Mon, 14 May 2018 07:28:52 +0000 (+0200) Subject: CI config: no need to make both install and install_docs X-Git-Tag: OpenSSL_1_1_0i~115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1e92861c30e91139407e65fffd0af76ef48fd34;p=openssl CI config: no need to make both install and install_docs 'install' depends on 'install_docs', so making the latter explicit is a waste. Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/6250) (cherry picked from commit 986caf9e34fd60366a5b3711bb12e239e43a2431) --- diff --git a/.travis.yml b/.travis.yml index ba06dfd5b8..e20c2084f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -186,7 +186,7 @@ script: fi - if [ -n "$DESTDIR" ]; then mkdir "../$DESTDIR"; - if $make install install_docs DESTDIR="../$DESTDIR"; then + if $make install DESTDIR="../$DESTDIR"; then echo -e '+\057\057\057\057\057 MAKE INSTALL_DOCS OK'; else echo -e '+\057\057\057\057\057 MAKE INSTALL_DOCS FAILED'; false; diff --git a/appveyor.yml b/appveyor.yml index 8dd6cb6fb0..ba291fdd17 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -41,5 +41,5 @@ test_script: - cd _build - nmake test - mkdir ..\_install - - nmake install install_docs DESTDIR=..\_install + - nmake install DESTDIR=..\_install - cd ..