build: Add silent rules for podwrapper.

Also quietens the podwrapper script itself, as there is no reason to
print 'wrote <output>' for each output file.
This commit is contained in:
Richard W.M. Jones
2016-08-04 23:33:58 +01:00
parent 320b053178
commit a11a7ebbc3
3 changed files with 7 additions and 4 deletions

View File

@@ -520,7 +520,7 @@ if ($man) {
unlink $man;
die "$input: errors or warnings in this POD file, see messages above\n"
}
print "$progname: wrote $man\n";
#print "$progname: wrote $man\n";
}
# Output HTML.
@@ -618,7 +618,7 @@ if ($html) {
unlink $html;
die "$input: errors or warnings in this POD file, see messages above\n"
}
print "$progname: wrote $html\n";
#print "$progname: wrote $html\n";
}
# Output text.
@@ -637,7 +637,7 @@ if ($text) {
unlink $text;
die "$input: errors or warnings in this POD file, see messages above\n"
}
print "$progname: wrote $text\n";
#print "$progname: wrote $text\n";
}
sub read_whole_file