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


- Log -----------------------------------------------------------------
commit b91891043df21928b72d8093a22a396eca58aa5b
Author: Richard Levitte <levi...@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 <rs...@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
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to