From 74f1ddfc5ccc1690116f365aae5214d4a743c347 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sun, 19 Aug 2012 00:26:20 +0200 Subject: [PATCH] Add running 'mandoc -Tlint' to the manlint target. Also ignore the exit status here. Suggested-by: nant --- share/mk/bsd.man.mk | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) 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 -- 1.7.7.2