fiss

Friedel's Initialization and Service Supervision
Log | Files | Refs | LICENSE

commit d75301059d390b1baa10b7c9684af1237eaff40f
parent 452623bb5f346676f576eb966ac9c5a1bf5626ea
Author: Friedel Schön <[email protected]>
Date:   Thu,  1 Jun 2023 13:25:47 +0200

'fixing' empty-lines in make-man.py

Diffstat:
MMakefile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -22,6 +22,7 @@ LDFLAGS += -fPIE SED ?= sed PYTHON ?= python3 +AWK ?= awk # Executable-specific flags finit_FLAGS := -static @@ -94,7 +95,7 @@ $(DOCS_DIR)/%.html: $(MAN_DIR)/%.txt $(DOC_AST_DIR) | $(DOCS_DIR) $(SED) 's/%VERSION%/$(VERSION)/' $< | $(PYTHON) $(MAKE_DOCS) > $@ $(ROFF_DIR)/%: $(MAN_DIR)/%.txt | $(ROFF_DIR) - $(SED) 's/%VERSION%/$(VERSION)/' $< | $(PYTHON) $(MAKE_MAN) > $@ + $(SED) 's/%VERSION%/$(VERSION)/' $< | $(PYTHON) $(MAKE_MAN) | $(AWK) '/./ { print }' > $@ # Debug compile_flags.txt: