summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-19 01:29:01 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-19 01:29:01 +0100
commitda1f2104c71a6c4bbb695f3b74a6bde750d5a910 (patch)
tree4582d69500d09b3abd4d421670b15ccd3ff397b6 /Configure
parentbec5e4ae0dbacfc29595e5eb007d73180f305cc6 (diff)
Correct the check of files to depend on against known generated ones
The check was erroneously inversed Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/Configure b/Configure
index 060df7399b..5060be0fe3 100755
--- a/Configure
+++ b/Configure
@@ -1596,9 +1596,9 @@ EOF
# and that there are lines to build it in a BEGINRAW..ENDRAW
# section or in the Makefile template.
if (! -f $d
- || !(grep { $d eq $_ }
- map { cleanfile($srcdir, $_, $blddir) }
- (@generated_headers, @generated_by_make_headers))) {
+ || (grep { $d eq $_ }
+ map { cleanfile($srcdir, $_, $blddir) }
+ (@generated_headers, @generated_by_make_headers))) {
$d = cleanfile($buildd, $_, $blddir);
}
# Take note if the file to depend on is being renamed