diff options
author | 2013-03-30 12:06:40 +0000 | |
---|---|---|
committer | 2013-03-30 12:06:40 +0000 | |
commit | 2e741f1858b5e1aa78e65b2ed289dccd69f076a0 (patch) | |
tree | 777c0fdeb18e32b4b7942ba04a3b57fac43c7c62 | |
parent | Disable perlcn/perlko/perljp manpages which use EUC encodings, we produce (diff) | |
download | wireguard-openbsd-2e741f1858b5e1aa78e65b2ed289dccd69f076a0.tar.xz wireguard-openbsd-2e741f1858b5e1aa78e65b2ed289dccd69f076a0.zip |
Use --stderr to output pod2man problems at build time, rather than embed
them into a "POD ERRORS" section in the produced manpages.(!) ok miod@
-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 |