diff options
author | bapt <bapt@FreeBSD.org> | 2014-11-22 09:47:24 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-11-22 09:47:24 +0800 |
commit | fc8073118558b90417dbb4611d0cd4a33ab231e5 (patch) | |
tree | c684b9da235b488423c954ddeca80254c5c80fdd /Mk/bsd.port.mk | |
parent | 85247ea8d40c3fedde6f2e0cb2d5926294a3d2cc (diff) | |
download | freebsd-ports-gnome-fc8073118558b90417dbb4611d0cd4a33ab231e5.tar.gz freebsd-ports-gnome-fc8073118558b90417dbb4611d0cd4a33ab231e5.tar.zst freebsd-ports-gnome-fc8073118558b90417dbb4611d0cd4a33ab231e5.zip |
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
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 113131ef089b..f5b3d7ada3f2 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -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 ; \ |