Commit 83a8c45d authored by Alexandre Julliard's avatar Alexandre Julliard

make_specfiles: Properly replace commented out exports.

parent 693fb6d5
......@@ -198,7 +198,7 @@ sub update_spec_file($)
my %parent = %{$funcs{$func}};
goto done if $parent{spec} eq $descr{spec}; # the definition is in this spec file
if ($descr{callconv} ne "stub" && $descr{target} !~ /\./)
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;
goto done;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment