diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2013-03-30 12:06:41 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2013-03-30 12:06:41 +0000 |
commit | fd5f8597ee4c64a203798daa36ba4e9be32a4a1f (patch) | |
tree | 073ae87a21776e58bb4033ce316b927d0eebc825 /gnu/usr.bin/perl | |
parent | f39c65d4d7618c04c270dfbdea94b274dc6d7ffc (diff) |
Use --stderr to output pod2man problems at build time, rather than embed
them into a "POD ERRORS" section in the produced manpages.(!) ok miod@
Diffstat (limited to 'gnu/usr.bin/perl')
-rw-r--r-- | gnu/usr.bin/perl/Makefile.bsd-wrapper1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/Makefile.bsd-wrapper1 b/gnu/usr.bin/perl/Makefile.bsd-wrapper1 index e56faea962b..646b47d1307 100644 --- a/gnu/usr.bin/perl/Makefile.bsd-wrapper1 +++ b/gnu/usr.bin/perl/Makefile.bsd-wrapper1 @@ -803,13 +803,13 @@ MANSRC_COOKIE= . endif ${page}.${sect}: ${file} - ${POD2MAN} --section=${sect} --official ${.ALLSRC} $@ + ${POD2MAN} --stderr --section=${sect} --official ${.ALLSRC} $@ .endfor mansrc.build: .for sect in 1 3p . if !empty(_quick${sect}) - cd ${.OBJDIR} && ${POD2MAN} --section=${sect} --official ${_quick${sect}} + cd ${.OBJDIR} && ${POD2MAN} --stderr --section=${sect} --official ${_quick${sect}} . endif .endfor |