mirror of
https://github.com/openssl/openssl.git
synced 2025-03-19 19:50:42 +08:00
Correct the check of files to depend on against known generated ones
The check was erroneously inversed Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
bec5e4ae0d
commit
da1f2104c7
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user