X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=Documentation%2Fbuild-docdep.perl;h=ba4205e0302a267a5da6bef504f3e69eb0c4aa6d;hb=9debc3241b5d54891600c839b4df4f48b2daa60c;hp=6ff35e02faf386f103fd691d8ccca346e181614c;hpb=fb612d54c1df7e45d174060c1cbdf060accceb6d;p=git.git diff --git a/Documentation/build-docdep.perl b/Documentation/build-docdep.perl index 6ff35e02f..ba4205e03 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; @@ -45,10 +41,6 @@ while ($changed) { while (my ($text, $included) = each %include) { if (! exists $included{$text} && (my $base = $text) =~ s/\.txt$//) { - my ($suffix) = '1'; - if ($base eq 'git') { - $suffix = '7'; # yuck... - } - print "$base.html $base.$suffix : ", join(" ", keys %$included), "\n"; + print "$base.html $base.xml : ", join(" ", keys %$included), "\n"; } }