From 4de25353bc3aa7dd41f1a6b606bbc92f2b12a246 Mon Sep 17 00:00:00 2001 From: John Scott Date: Thu, 11 Dec 2025 18:39:14 -0500 Subject: [PATCH] Pass the --no-info option when calling help2man For context, help2man was created by the GNU Project as a tool to provide terse manual pages because it is their style to put detailed information in Texinfo format for the 'info' program. With this user base in mind, help2man by default includes the following text in the manual page it generates: SEE ALSO The full documentation for HTTPDirFS is maintained as a Texinfo manual. If the info and HTTPDirFS programs are properly installed at your site, the command info HTTPDirFS should give you access to the complete manual. This project doesn't have a Texinfo manual and this note sent me on a goose chase for a manual that didn't exist. For us there is the --no-info option to omit the blurb. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index ae2fdc5..431a154 100644 --- a/meson.build +++ b/meson.build @@ -55,6 +55,7 @@ if (host_machine.system() == 'linux') help2man_opts = [ '--name="mount HTTP directory as a virtual filesystem"', '--no-discard-stderr', + '--no-info', '--section=1'] manfile = custom_target('httpdirfs.1', output: 'httpdirfs.1',