From 4985a804b0777e6339dfdb02dd28a1945cc99a93 Mon Sep 17 00:00:00 2001 From: Boyuan Yang Date: Mon, 24 Jul 2023 23:09:57 -0400 Subject: [PATCH] docs/man/meson.build: Use -N for help2man to avoid texinfo section If -N option is not added, the following section will be appended to the generated man pages: SEE ALSO The full documentation for Timeshift is maintained as a Texinfo manual. If the info and Timeshift programs are properly installed at your site, the command info Timeshift should give you access to the complete manual. This is not desired, thus add the -N option to the help2man invocation. Signed-off-by: Boyuan Yang --- docs/man/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/man/meson.build b/docs/man/meson.build index 439a3e1..f86fc1b 100644 --- a/docs/man/meson.build +++ b/docs/man/meson.build @@ -1,8 +1,8 @@ help2man = find_program('help2man') mans = [ - ['timeshift', [help2man, '--output=@OUTPUT@', timeshift]], - ['timeshift-gtk', [help2man, '--output=@OUTPUT@', timeshift_gtk]], + ['timeshift', [help2man, '-N', '--output=@OUTPUT@', timeshift]], + ['timeshift-gtk', [help2man, '-N', '--output=@OUTPUT@', timeshift_gtk]], ] foreach man: mans