Commit da1f2104 authored by Richard Levitte's avatar Richard Levitte
Browse files

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



The check was erroneously inversed

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent bec5e4ae
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1596,7 +1596,7 @@ 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 $_ }
                    || (grep { $d eq $_ }
                        map { cleanfile($srcdir, $_, $blddir) }
                        (@generated_headers, @generated_by_make_headers))) {
                    $d = cleanfile($buildd, $_, $blddir);