提交 da1f2104 编写于 作者: R Richard Levitte

Correct the check of files to depend on against known generated ones

The check was erroneously inversed
Reviewed-by: NRich Salz <rsalz@openssl.org>
上级 bec5e4ae
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册