diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-08 08:58:52 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-08 08:58:52 -0800 |
commit | f8d294f0a44c4305a9f3a1c70beb6a1c7583f287 (patch) | |
tree | bb7dd65e1d945edbe0137a761ebc388c7394067a /Documentation | |
parent | 4bfb6b62ffc9460798ebc78c3a30e4eff7c409d0 (diff) | |
download | git-f8d294f0a44c4305a9f3a1c70beb6a1c7583f287.tar.gz |
Clean build annoyance.
As Pasky pointed out, building in templates directory showed
list of built template files which was unneeded. This commit
also fixes another build annoyance I recently left in by
accident.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rwxr-xr-x | Documentation/build-docdep.perl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Documentation/build-docdep.perl b/Documentation/build-docdep.perl index 6ff35e02fa..489389c32a 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; |