diff options
author | Michael Biebl <mbiebl@gmail.com> | 2017-04-13 16:30:56 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-24 03:47:28 +0200 |
commit | e17e5ba9bff633b5f2b6e9950b3bb64b59079c74 (patch) | |
tree | 9444c5744f3f45573c2cc7e10978ef65151147e6 /tmpfiles.d | |
parent | meson: rework processing of unit files (diff) | |
download | systemd-e17e5ba9bff633b5f2b6e9950b3bb64b59079c74.tar.xz systemd-e17e5ba9bff633b5f2b6e9950b3bb64b59079c74.zip |
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.build | 2 |
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 |