X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Fbuild-docdep.perl;h=489389c32af57d39bb843e2b0621144b38006fa3;hb=7fb23e6083dbefa8eb4c554d8b2cd5a6292b2df4;hp=6ff35e02faf386f103fd691d8ccca346e181614c;hpb=fb612d54c1df7e45d174060c1cbdf060accceb6d;p=git.git diff --git a/Documentation/build-docdep.perl b/Documentation/build-docdep.perl index 6ff35e02..489389c3 100755 --- a/Documentation/build-docdep.perl +++ b/Documentation/build-docdep.perl @@ -22,15 +22,11 @@ my $changed = 1; while ($changed) { $changed = 0; while (my ($text, $included) = each %include) { - print STDERR "Looking at $text...\n"; for my $i (keys %$included) { - print STDERR "$text includes $i.\n"; # $text has include::$i; if $i includes $j # $text indirectly includes $j. if (exists $include{$i}) { - print STDERR "$i includes something.\n"; for my $j (keys %{$include{$i}}) { - print STDERR "$text includes $i include $j\n"; if (!exists $include{$text}{$j}) { $include{$text}{$j} = 1; $included{$j} = 1;