[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Tue Feb 13 20:11:53 UTC 2018
The branch master has been updated
via 9b7e82f8d939ca6894f941268b219da55f069b26 (commit)
from 19308587d4a4fd2886b0ca193ccfc6756d867cb1 (commit)
- Log -----------------------------------------------------------------
commit 9b7e82f8d939ca6894f941268b219da55f069b26
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)
-----------------------------------------------------------------------
Summary of changes:
Configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Configure b/Configure
index e3d8d70..2389e52 100755
--- a/Configure
+++ b/Configure
@@ -1929,7 +1929,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++, C and asm files
@@ -1957,7 +1957,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);
}
More information about the openssl-commits
mailing list