Skip to content

Commit

Permalink
Clean build annoyance.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Nov 8, 2005
1 parent 4bfb6b6 commit f8d294f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions Documentation/build-docdep.perl
Expand Up @@ -22,15 +22,11 @@
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;
Expand Down
1 change: 0 additions & 1 deletion templates/Makefile
Expand Up @@ -13,7 +13,6 @@ shq = $(subst ','\'',$(1))
shellquote = '$(call shq,$(1))'

all: boilerplates.made custom
find blt

# Put templates that can be copied straight from the source
# in a file direc--tory--file in the source. They will be
Expand Down

0 comments on commit f8d294f

Please sign in to comment.