]> gitweb.michael.orlitzky.com - postfix-logwatch.git/commitdiff
Makefile: fix the HTML documentation rule.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 5 Aug 2021 22:10:53 +0000 (18:10 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 5 Aug 2021 22:10:53 +0000 (18:10 -0400)
It looks like man2html on Linux does not (or does not any longer)
support the "-t" flag. Moreover, man2html seems happy to read the man
page directly. In this commit we simplify the html documentation rule
to simply call man2html on the man page itself, with no flags.

Makefile

index b9c667f68592e969dfe81fb6137a598f1f0666fe..ccdd35a73b4299d6832aed8ed0a8419c78c94abb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -58,5 +58,5 @@ release:
        rel=$(program)-$$vers ; \
        tar -cJf $${rel}.tar.xz --transform=s",^,$${rel}/," $(src);
 
-$(program).1.html:
-       groff -m mandoc -T ascii $(program).1 | man2html -t 'Man page: $(program)(1)' >| $@;
+$(program).1.html: $(program).1
+       man2html $< > $@;