From: Sascha Wildner Date: Sat, 18 Aug 2012 22:26:20 +0000 (+0200) Subject: Add running 'mandoc -Tlint' to the manlint target. X-Git-Tag: v3.2.0~362 X-Git-Url: http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/74f1ddfc5ccc1690116f365aae5214d4a743c347 Add running 'mandoc -Tlint' to the manlint target. Also ignore the exit status here. Suggested-by: nant --- diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk index 43f089a..535a486 100644 --- a/share/mk/bsd.man.mk +++ b/share/mk/bsd.man.mk @@ -243,8 +243,10 @@ manlint: ${page}lint ${page}lint: ${page} .if defined(MANFILTER) @${MANFILTER} < ${.ALLSRC} | ${MROFF_CMD} -ww -z + @-${MANFILTER} < ${.ALLSRC} | mandoc -Tlint .else @${MROFF_CMD} -ww -z ${.ALLSRC} + @-mandoc -Tlint ${.ALLSRC} .endif .endfor .endif