aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2023-11-19 08:56:43 -0800
committerStephen Hemminger <stephen@networkplumber.org>2023-11-19 08:56:43 -0800
commitf7a587583263843cb6314eaebf65049163fae0ed (patch)
treefaa7b063e970e27d5b07d21ca5b2b83cd9d30dc8
parent3193d2c22421a9b055357348110a3342f8ca2711 (diff)
downloadiproute2-f7a587583263843cb6314eaebf65049163fae0ed.tar.gz
man: allow up to 100 character lines
There are some long URL's that cause warnings from the man page checker. Go ahead and allow these even though Debian lintian may still complain. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
-rw-r--r--man/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile b/man/Makefile
index 0c759dd2f..c0b0d4166 100644
--- a/man/Makefile
+++ b/man/Makefile
@@ -3,7 +3,7 @@ INSTALL=install
INSTALLDIR=install -m 0755 -d
INSTALLMAN=install -m 0644
# Pass the same parameters as Lintian uses on Debian.
-MAN_CHECK=LC_ALL=en_US.UTF-8 MANROFFSEQ='' MANWIDTH=80 man --warnings \
+MAN_CHECK=LC_ALL=en_US.UTF-8 MANROFFSEQ='' MANWIDTH=100 man --warnings \
--encoding=UTF-8 --local-file --troff-device=utf8 --ditroff
# Hide man output, count and print errors.
MAN_REDIRECT=2>&1 >/dev/null | tee /dev/fd/2 | wc -l