diff options
author | David Mitchell <davem@iabyn.com> | 2016-03-01 16:04:36 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-03-01 16:04:36 +0000 |
commit | 7bc0dab7cf60b01b8c8a012827aedaff0915968b (patch) | |
tree | effcdab7f3f085a4ae93b85bc92352b4f838fd44 /installman | |
parent | 9dee5840e63e586718b283d542c830b0e0514aab (diff) | |
download | perl-7bc0dab7cf60b01b8c8a012827aedaff0915968b.tar.gz |
installman: don't warn about missing pod
Currently it spits out about 80 lines like the following to stderr:
no documentation in lib/Archive/Tar/Constant.pm
no documentation in lib/CPAN/Author.pm
no documentation in lib/CPAN/Bundle.pm
Since this is not actually an error condition, spit to stdout instead,
and only under --verbose.
See http://nntp.perl.org/group/perl.perl5.porters/234436.
Diffstat (limited to 'installman')
-rwxr-xr-x | installman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installman b/installman index ce4b7f3abc..60fbce3bde 100755 --- a/installman +++ b/installman @@ -142,7 +142,7 @@ sub pod2man { unless ($has_pod) { - warn "no documentation in $mod\n" unless $opts{silent}; + print "no documentation in $mod\n" if $opts{verbose}; next; } |