X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Fbuild-docdep.perl;h=489389c32af57d39bb843e2b0621144b38006fa3;hb=1d84a60459a32fb1707ff7de4a013b5d9673f55d;hp=6ff35e02faf386f103fd691d8ccca346e181614c;hpb=5ca15b8af7f018b9ae9da30130f9dcd1a896e0b3;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;