make_specfiles: Support a magic comment to prevent forwarding an entry point.
This commit is contained in:
parent
f127a2c075
commit
c0ac16403f
|
@ -202,6 +202,7 @@ sub update_spec_file($)
|
|||
|
||||
my %parent = %{$funcs{$func}};
|
||||
goto done if $parent{spec} eq $descr{spec}; # the definition is in this spec file
|
||||
goto done if $descr{comment} && $descr{comment} =~ /don't forward/;
|
||||
if ($descr{callconv} ne "stub" && $descr{target} !~ /\./ && !$commented_out)
|
||||
{
|
||||
printf "%s:%u: note: %s already defined in %s\n", $file, $., $func, $parent{spec} if $show_duplicates;
|
||||
|
|
Loading…
Reference in New Issue