Skip to content

Commit

Permalink
Fix installation of man pages in proper man dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga authored and afayaz-feral committed Sep 14, 2020
1 parent 5163c01 commit 832f9ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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
Expand All @@ -77,7 +77,7 @@ if with_examples

install_man(
example_manpage,
install_dir: path_mandir,
install_dir: join_paths(path_mandir, 'man1')
)
endif

Expand Down

0 comments on commit 832f9ab

Please sign in to comment.