[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Richard Levitte levitte at openssl.org
Mon May 14 15:56:52 UTC 2018


The branch OpenSSL_1_1_0-stable has been updated
       via  f1e92861c30e91139407e65fffd0af76ef48fd34 (commit)
      from  0ec946fda5b66fb364a784b002aee5f8b1ac678a (commit)


- Log -----------------------------------------------------------------
commit f1e92861c30e91139407e65fffd0af76ef48fd34
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon May 14 09:28:52 2018 +0200

    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 <appro at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/6250)
    
    (cherry picked from commit 986caf9e34fd60366a5b3711bb12e239e43a2431)

-----------------------------------------------------------------------

Summary of changes:
 .travis.yml  | 2 +-
 appveyor.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index ba06dfd..e20c208 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 8dd6cb6..ba291fd 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 ..


More information about the openssl-commits mailing list