summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-04-29 20:09:27 +0200
committerAlejandro Colomar <alx@kernel.org>2023-04-29 20:10:48 +0200
commit88313660aaf46794957dc2668e5314a465d3122c (patch)
treef3cc29ffa50052872b24dfe2aa6f23d90a69946c
parent15052a18075b3903a806cfb720a4f4fb966cf7e1 (diff)
*.mk: build-catman-troff: Silence warnings about blank lines in input
Ideally, we want this warning, but it has false positives in the example programs, so let's disable it for now. Hopefully, groff will split those two, and then we'll be able to re-enable the one we want. Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--share/mk/build/catman.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/share/mk/build/catman.mk b/share/mk/build/catman.mk
index f9cdde988..b3c1cec18 100644
--- a/share/mk/build/catman.mk
+++ b/share/mk/build/catman.mk
@@ -49,6 +49,7 @@ $(_CATMAN_MAN_set): %.cat.set: %.cat.troff | $$(@D)/
$(info TROFF $@)
! ($(TROFF) $(TROFFFLAGS_MAN) $(NROFFFLAGS) <$< 2>&1 >$@ \
| $(GREP) -v 'style: .TH missing fifth argument and second argument' \
+ | $(GREP) -v 'style: blank line in input$$' \
||:; \
) \
| $(GREP) ^ >&2