It may be that some "missing" manuals have been written since their
insertion in the "missing" files. Make sure to alert when such manual
references are found.
This works, because we collect all existing manual references into
%name_map first.
Fixes #10681
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10683)
}
close FH;
+ for (@missing) {
+ err("$missingfile:", "$_ is documented in $name_map{$_}")
+ if exists $name_map{$_} && defined $name_map{$_};
+ }
+
return @missing;
}