summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-12-17 16:19:19 +0100
committerIñigo Martínez <inigomartinez@gmail.com>2019-01-21 21:18:06 +0100
commitce13717c433c841f7b3e749ccedcdfc830c4f761 (patch)
tree7979b40dc0d0cf7b90f3f44330ae8ba2a399f242 /man
parentb7ca7962e7dcf1508130ffeed515f26036ab2176 (diff)
downloadgvfs-ce13717c433c841f7b3e749ccedcdfc830c4f761.tar.gz
build: Use / instead of join_paths
Since meson 0.49, the `/` character can be used to join paths[0], so all the instances of `join_paths` have been replaced. [0] http://mesonbuild.com/Release-notes-for-0-49-0.html#joining-paths-with-
Diffstat (limited to 'man')
-rw-r--r--man/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/man/meson.build b/man/meson.build
index bf4fcb11..063920a8 100644
--- a/man/meson.build
+++ b/man/meson.build
@@ -30,7 +30,7 @@ foreach man: mans
output: output,
command: xsltproc_cmd,
install: true,
- install_dir: join_paths(gvfs_mandir, 'man1'),
+ install_dir: gvfs_mandir / 'man1',
)
endforeach
@@ -43,5 +43,5 @@ custom_target(
output: output,
command: xsltproc_cmd,
install: true,
- install_dir: join_paths(gvfs_mandir, 'man7'),
+ install_dir: gvfs_mandir / 'man7',
)