From 00743d1126bd4635cdc42e9b96bfbb6c8d4ac795 Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Wed, 31 Dec 2025 15:31:01 +0100 Subject: [PATCH] force man page to plain text output to 80 char width --- cpp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/Makefile b/cpp/Makefile index 56863b4e..bc754094 100644 --- a/cpp/Makefile +++ b/cpp/Makefile @@ -270,7 +270,7 @@ $(MAN_PAGE_DIR)/%.1 : $(DOC_DIR)/%.1 | $(MAN_PAGE_DIR)/ $(DOC_DIR)/%_man_page.txt : $(DOC_DIR)/%.1 @echo "!! ------ THIS FILE IS AUTO_GENERATED! DO NOT MANUALLY UPDATE!!!" > $@ @echo "!! ------ The native file is $(notdir $<). Re-run 'make docs' after updating\n\n" >> $@ - man -l $< | col -bx >> $@ + MANWIDTH=80 man -l $< | col -bx >> $@ $(SYSTEMD_CONF) : $(OS_FILES)/$(notdir $(SYSTEMD_CONF)) @echo "-- Copying $@"