From a4ea97d6e688f18d92b17fc9ab9d730672997baf Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Wed, 24 Jul 2019 06:18:36 +0200 Subject: build: Simplify pathname handling This switches to using relative paths as much as possible, and the "/" shorthand for join_paths. --- docs/man/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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', ) -- cgit v1.2.1