mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-06 09:04:58 +00:00
fix man page installation location
docbook2man's --output argument is expecting a directory feeding it the location of the man page just puts the man page under a directory with the same name in the build directory.
This commit is contained in:
parent
ad28e34f08
commit
e55f52de09
@ -2,20 +2,20 @@ docbook2man = find_program('docbook2man', required : false)
|
||||
if docbook2man.found()
|
||||
custom_target('fwupdmgr-man',
|
||||
input : 'fwupdmgr.sgml',
|
||||
output : 'fwupdmgr.1.gz',
|
||||
output : 'fwupdmgr.1',
|
||||
command : [
|
||||
docbook2man, '@INPUT@',
|
||||
'--output', '@OUTPUT@',
|
||||
'--output', meson.current_build_dir(),
|
||||
],
|
||||
install : true,
|
||||
install_dir : join_paths(get_option('mandir'), 'man1'),
|
||||
)
|
||||
custom_target('dfu-tool-man',
|
||||
input : 'dfu-tool.sgml',
|
||||
output : 'dfu-tool.1.gz',
|
||||
output : 'dfu-tool.1',
|
||||
command : [
|
||||
docbook2man, '@INPUT@',
|
||||
'--output', '@OUTPUT@',
|
||||
'--output', meson.current_build_dir(),
|
||||
],
|
||||
install : true,
|
||||
install_dir : join_paths(get_option('mandir'), 'man1'),
|
||||
|
Loading…
Reference in New Issue
Block a user