svn commit: r373027 - head/Mk

Baptiste Daroussin bapt at FreeBSD.org
Sat Nov 22 01:47:25 UTC 2014


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 ; \


More information about the svn-ports-all mailing list