c2man: We don't have multiple dlls in one directory anymore.
This commit is contained in:
parent
e6390a5c7f
commit
bb44fe5698
|
@ -1133,13 +1133,12 @@ sub output_spec($)
|
||||||
$percent_documented = int($percent_documented);
|
$percent_documented = int($percent_documented);
|
||||||
}
|
}
|
||||||
|
|
||||||
# Make a list of the contributors to this DLL. Do this only for the source
|
# Make a list of the contributors to this DLL.
|
||||||
# files that make up the DLL, because some directories specify multiple dlls.
|
|
||||||
my @contributors;
|
my @contributors;
|
||||||
|
|
||||||
for (@{$spec_details->{SOURCES}})
|
foreach my $source_file (keys %source_files)
|
||||||
{
|
{
|
||||||
my $source_details = $source_files{$_}[0];
|
my $source_details = $source_files{$source_file}[0];
|
||||||
for (@{$source_details->{CONTRIBUTORS}})
|
for (@{$source_details->{CONTRIBUTORS}})
|
||||||
{
|
{
|
||||||
push (@contributors, $_);
|
push (@contributors, $_);
|
||||||
|
|
Loading…
Reference in New Issue