mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-06 07:37:21 +02:00
Fix installation of man pages in proper man dirs
See https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s11.html#usrsharemanManualPages
This commit is contained in:
parent
5163c01d24
commit
832f9ab7e0
@ -54,7 +54,7 @@ gamemoded_manpage = configure_file(
|
||||
|
||||
install_man(
|
||||
gamemoded_manpage,
|
||||
install_dir: path_mandir,
|
||||
install_dir: join_paths(path_mandir, 'man8')
|
||||
)
|
||||
|
||||
gamemoderun_manpage = configure_file(
|
||||
@ -65,7 +65,7 @@ gamemoderun_manpage = configure_file(
|
||||
|
||||
install_man(
|
||||
gamemoderun_manpage,
|
||||
install_dir: path_mandir,
|
||||
install_dir: join_paths(path_mandir, 'man1')
|
||||
)
|
||||
|
||||
if with_examples
|
||||
@ -77,7 +77,7 @@ if with_examples
|
||||
|
||||
install_man(
|
||||
example_manpage,
|
||||
install_dir: path_mandir,
|
||||
install_dir: join_paths(path_mandir, 'man1')
|
||||
)
|
||||
endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user