Skip to content

Commit 0269723

Browse files
authoredJul 31, 2023
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 <[email protected]>
1 parent e7fab11 commit 0269723

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/man/meson.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
help2man = find_program('help2man')
22

33
mans = [
4-
['timeshift', [help2man, '--output=@OUTPUT@', timeshift]],
5-
['timeshift-gtk', [help2man, '--output=@OUTPUT@', timeshift_gtk]],
4+
['timeshift', [help2man, '-N', '--output=@OUTPUT@', timeshift]],
5+
['timeshift-gtk', [help2man, '-N', '--output=@OUTPUT@', timeshift_gtk]],
66
]
77

88
foreach man: mans

0 commit comments

Comments
 (0)
Please sign in to comment.