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 <byang@debian.org>
This commit is contained in:
Boyuan Yang 2023-07-31 12:08:37 -04:00 committed by GitHub
parent e7fab11ae9
commit 02697234b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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