summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaiki Ueno <dueno@src.gnome.org>2019-07-24 06:18:36 +0200
committerDaiki Ueno <dueno@src.gnome.org>2019-07-25 19:59:01 +0200
commita4ea97d6e688f18d92b17fc9ab9d730672997baf (patch)
treefeb1829f7454c495be72a3ef361d633aca6b8a8f /docs
parent555407a448d78057e3b9b2b2d8fcc83a2275d377 (diff)
downloadlibsecret-a4ea97d6e688f18d92b17fc9ab9d730672997baf.tar.gz
build: Simplify pathname handling
This switches to using relative paths as much as possible, and the "/" shorthand for join_paths.
Diffstat (limited to 'docs')
-rw-r--r--docs/man/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/man/meson.build b/docs/man/meson.build
index 37cabc4..8370d2b 100644
--- a/docs/man/meson.build
+++ b/docs/man/meson.build
@@ -14,5 +14,5 @@ secret_tool_man = custom_target('secret-tool.1',
],
build_by_default: true,
install: true,
- install_dir: join_paths(libsecret_prefix, get_option('mandir'), 'man1'),
+ install_dir: libsecret_prefix / get_option('mandir') / 'man1',
)