summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2019-01-07 17:44:10 +0100
committerOndrej Holy <oholy@redhat.com>2019-01-07 17:44:10 +0100
commitf1678f8822c53cbd51c65efe6d38fd4e177a586d (patch)
treefe27d15a5c6d0a43a6f6f612b0319fa23b276962 /man
parentab6723ff454675abe7fad31945b2aebeac5b1e6a (diff)
downloadgvfs-f1678f8822c53cbd51c65efe6d38fd4e177a586d.tar.gz
Revert "build: Use / instead of join_paths"
This reverts commit 9523d8e09e0088c8cd58ace494d47cc3083151fc.
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 063920a8..bf4fcb11 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: gvfs_mandir / 'man1',
+ install_dir: join_paths(gvfs_mandir, 'man1'),
)
endforeach
@@ -43,5 +43,5 @@ custom_target(
output: output,
command: xsltproc_cmd,
install: true,
- install_dir: gvfs_mandir / 'man7',
+ install_dir: join_paths(gvfs_mandir, 'man7'),
)