From 88313660aaf46794957dc2668e5314a465d3122c Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Sat, 29 Apr 2023 20:09:27 +0200 Subject: *.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 --- share/mk/build/catman.mk | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v1.2.3