From 02697234b51e342abeef3ba61d76b1973f357efa Mon Sep 17 00:00:00 2001 From: Boyuan Yang <073plan@gmail.com> Date: Mon, 31 Jul 2023 12:08:37 -0400 Subject: [PATCH] docs/man/meson.build: Use -N for help2man to avoid texinfo section (#217) 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