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:51:48 +0000 (17:51 +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)

.travis.yml
appveyor.yml

index f23f15685d82a46e02eb2d335b78f23ea3b2e9c2..4affefd5f04246b0fc74cf8aedf838da9c52906a 100644 (file)
@@ -229,7 +229,7 @@ script:
       fi
     - if [ -n "$DESTDIR" ]; then
           mkdir "$top/$DESTDIR";
-          if $make install install_docs DESTDIR="$top/$DESTDIR" >~/install.log 2>&1 ; then
+          if $make install DESTDIR="$top/$DESTDIR" >~/install.log 2>&1 ; then
               echo -e '+\057\057\057\057\057\057\057 MAKE INSTALL OK';
           else
               echo -e '+\057\057\057\057\057\057\057 MAKE INSTALL FAILED';
index 3b66f0defb18eb016f687595025842d3aa254a76..24966c0faa5ce46f5ba49c6f048a5ca37b93b8ab 100644 (file)
@@ -61,6 +61,6 @@ test_script:
     - ps: >-
         if ($env:EXTENDED_TESTS) {
             mkdir ..\_install
-            cmd /c "nmake install install_docs DESTDIR=..\_install 2>&1"
+            cmd /c "nmake install DESTDIR=..\_install 2>&1"
         }
     - cd ..