CI config: no need to make both install and install_docs
authorRichard Levitte <levitte@openssl.org>
Mon, 14 May 2018 07:28:52 +0000 (09:28 +0200)
committerRichard Levitte <levitte@openssl.org>
Mon, 14 May 2018 15:56:35 +0000 (17:56 +0200)
'install' depends on 'install_docs', so making the latter explicit is
a waste.

Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6250)

(cherry picked from commit 986caf9e34fd60366a5b3711bb12e239e43a2431)

.travis.yml
appveyor.yml

index ba06dfd5b84a1de37faa5c262edd2241830a9803..e20c2084f0cb91a5d724bd478f7e2df76047402d 100644 (file)
@@ -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;
index 8dd6cb6fb0af2bce1e32485f4dfb547e1616a70d..ba291fdd174b097424c17b78d5b6435430c48586 100644 (file)
@@ -41,5 +41,5 @@ test_script:
     - cd _build
     - nmake test
     - mkdir ..\_install
-    - nmake install install_docs DESTDIR=..\_install
+    - nmake install DESTDIR=..\_install
     - cd ..