Skip to content

Commit

Permalink
meson: fix manpage install location
Browse files Browse the repository at this point in the history
  • Loading branch information
loathingKernel committed Apr 9, 2024
1 parent 714f555 commit 55fbcc2
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docs/meson.build
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
scdoc = find_program('scdoc')

custom_target('man1',
man_1 = custom_target('man1',
input : 'umu.1.scd',
output : 'umu.1',
command : [ scdoc ],
feed : true,
capture : true,
install : true,
install_dir : get_option('mandir'),
)

custom_target('man5',
man_5 = custom_target('man5',
input : 'umu.5.scd',
output : 'umu.5',
command : [ scdoc ],
feed : true,
capture : true,
install : true,
install_dir : get_option('mandir'),
)
)

install_man(man_1.full_path())
install_man(man_5.full_path())

0 comments on commit 55fbcc2

Please sign in to comment.