mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-07 16:17:23 +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(
|
install_man(
|
||||||
gamemoded_manpage,
|
gamemoded_manpage,
|
||||||
install_dir: path_mandir,
|
install_dir: join_paths(path_mandir, 'man8')
|
||||||
)
|
)
|
||||||
|
|
||||||
gamemoderun_manpage = configure_file(
|
gamemoderun_manpage = configure_file(
|
||||||
@ -65,7 +65,7 @@ gamemoderun_manpage = configure_file(
|
|||||||
|
|
||||||
install_man(
|
install_man(
|
||||||
gamemoderun_manpage,
|
gamemoderun_manpage,
|
||||||
install_dir: path_mandir,
|
install_dir: join_paths(path_mandir, 'man1')
|
||||||
)
|
)
|
||||||
|
|
||||||
if with_examples
|
if with_examples
|
||||||
@ -77,7 +77,7 @@ if with_examples
|
|||||||
|
|
||||||
install_man(
|
install_man(
|
||||||
example_manpage,
|
example_manpage,
|
||||||
install_dir: path_mandir,
|
install_dir: join_paths(path_mandir, 'man1')
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user