From ef74b81681de576881fe7533b851332d4660d967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Tue, 28 Jan 2020 11:29:54 +0100 Subject: build: fix generation of HTML man pages Starting with mandoc version 1.14.2 the xhtml format is no longer an alias for html. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5cdb53b..08504ad 100644 --- a/Makefile +++ b/Makefile @@ -123,7 +123,7 @@ dist: clean man: @for m in ${MANUALS}; do \ echo "Generating $$m"; \ - sed -e "s/VERSION/${VERSION}/" "man/$$m" | mandoc -W warning -T utf8 -T xhtml -O man=%N.%S.html -O style=mandoc.css 1> "man/$$m.html" || true; \ + sed -e "s/VERSION/${VERSION}/" "man/$$m" | mandoc -W warning -T utf8 -T html -O man=%N.%S.html -O style=mandoc.css 1> "man/$$m.html" || true; \ done luadoc: -- cgit v1.2.3