summaryrefslogtreecommitdiff
path: root/tmpfiles.d
diff options
context:
space:
mode:
authorMichael Biebl <mbiebl@gmail.com>2017-04-13 10:30:56 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-23 21:47:28 -0400
commite17e5ba9bff633b5f2b6e9950b3bb64b59079c74 (patch)
tree9444c5744f3f45573c2cc7e10978ef65151147e6 /tmpfiles.d
parent082ef2adbddecde5432608298a19551319b162c5 (diff)
downloadsystemd-e17e5ba9bff633b5f2b6e9950b3bb64b59079c74.tar.gz
meson: use join_paths consistently
With -Dsplit-usr=true, we set rootprefix to /. This leads to //lib/systemd or //lib/udev for various dir variables. Using join_paths() avoids this.
Diffstat (limited to 'tmpfiles.d')
-rw-r--r--tmpfiles.d/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmpfiles.d/meson.build b/tmpfiles.d/meson.build
index 36a053bc0e..eebdbb9501 100644
--- a/tmpfiles.d/meson.build
+++ b/tmpfiles.d/meson.build
@@ -40,5 +40,5 @@ endforeach
if enable_tmpfiles
meson.add_install_script('sh', '-c',
- mkdir_p.format(sysconfdir + '/tmpfiles.d'))
+ mkdir_p.format(join_paths(sysconfdir, 'tmpfiles.d')))
endif