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

Richard Levitte levitte at openssl.org
Tue Feb 13 20:12:30 UTC 2018


The branch OpenSSL_1_1_0-stable has been updated
       via  b91891043df21928b72d8093a22a396eca58aa5b (commit)
      from  a2019575614c0e9f81223348da360d058ff30883 (commit)


- Log -----------------------------------------------------------------
commit b91891043df21928b72d8093a22a396eca58aa5b
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Feb 13 19:46:10 2018 +0100

    Configure: if a file is generated, never assume it's in the source dir
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/5355)
    
    (cherry picked from commit 9b7e82f8d939ca6894f941268b219da55f069b26)

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

Summary of changes:
 Configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Configure b/Configure
index 90a4651..bfd8b32 100755
--- a/Configure
+++ b/Configure
@@ -1757,7 +1757,7 @@ EOF
 
                 # If it isn't in the source tree, we assume it's generated
                 # in the build tree
-                if (! -f $s) {
+                if (! -f $s || $generate{$_}) {
                     $s = cleanfile($buildd, $_, $blddir);
                 }
                 # We recognise C and asm files
@@ -1783,7 +1783,7 @@ EOF
 
                 # If it isn't in the source tree, we assume it's generated
                 # in the build tree
-                if (! -f $s) {
+                if (! -f $s || $generate{$_}) {
                     $s = cleanfile($buildd, $_, $blddir);
                 }
                 # We recognise C and asm files


More information about the openssl-commits mailing list