diff options
Diffstat (limited to 'Documentation/build-docdep.perl')
-rwxr-xr-x | Documentation/build-docdep.perl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Documentation/build-docdep.perl b/Documentation/build-docdep.perl index 489389c32..ba4205e03 100755 --- a/Documentation/build-docdep.perl +++ b/Documentation/build-docdep.perl @@ -41,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"; } } |