Date: Sat, 22 Nov 2014 01:47:25 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373027 - head/Mk Message-ID: <201411220147.sAM1lPCM073686@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Sat Nov 22 01:47:24 2014 New Revision: 373027 URL: https://svnweb.freebsd.org/changeset/ports/373027 QAT: https://qat.redports.org/buildarchive/r373027/ Log: Do not ignore .so in manpages they are really problems for both groff and mandoc Given we do compress manpages. They need to be addressed with soelim(1) prior any compression Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Sat Nov 22 01:44:09 2014 (r373026) +++ head/Mk/bsd.port.mk Sat Nov 22 01:47:24 2014 (r373027) @@ -5232,7 +5232,7 @@ check-man: stage for dir in $$mdirs; do \ for f in $$(find $$dir -name "*.gz"); do \ ${ECHO_CMD} "===> Checking $${f##*/}" ; \ - gunzip -c $$f | mandoc -Tlint -Werror || zgrep -q "^.so" $$f && continue ; \ + gunzip -c $$f | mandoc -Tlint -Werror && continue ; \ err=1 ; \ done ; \ done ; \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411220147.sAM1lPCM073686>