summaryrefslogtreecommitdiff
path: root/tmpfiles.d
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-07-27 19:32:35 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-07-27 19:32:35 +0200
commitfce9abb22793505fbb09eccd0b1e24b5d578dbcc (patch)
tree1ecd2d6563bf7ee90c1facd70cf1b2b685e7a9de /tmpfiles.d
parent0b5f1bd49e6fb6009d189b6bb428224cb7127671 (diff)
downloadsystemd-fce9abb22793505fbb09eccd0b1e24b5d578dbcc.tar.gz
meson: use a/b instead of join_paths(a,b)
It is nicer and shorter.
Diffstat (limited to 'tmpfiles.d')
-rw-r--r--tmpfiles.d/meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/tmpfiles.d/meson.build b/tmpfiles.d/meson.build
index e0e339cd42..de36f5743d 100644
--- a/tmpfiles.d/meson.build
+++ b/tmpfiles.d/meson.build
@@ -52,6 +52,5 @@ endforeach
if enable_tmpfiles and install_sysconfdir
meson.add_install_script(
- 'sh', '-c',
- mkdir_p.format(join_paths(sysconfdir, 'tmpfiles.d')))
+ 'sh', '-c', mkdir_p.format(sysconfdir / 'tmpfiles.d'))
endif