From d1a10d489c4b75d74ca5431c7641529a8742e85c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Charaoui?= Date: Sun, 24 Apr 2022 00:27:12 -0400 Subject: [PATCH] add --name option to help2man This resolves a lintian warning in Debian packaging (manpage-has-useless-whatis-entry). --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b869d8..4888f72 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,8 @@ endif man: httpdirfs mkdir -p doc/man - help2man --no-discard-stderr ./httpdirfs > doc/man/httpdirfs.1 + help2man --name "mount HTTP directory as a virtual filesystem" \ + --no-discard-stderr ./httpdirfs > doc/man/httpdirfs.1 doc: doxygen Doxyfile