From fce9abb22793505fbb09eccd0b1e24b5d578dbcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 27 Jul 2021 19:32:35 +0200 Subject: meson: use a/b instead of join_paths(a,b) It is nicer and shorter. --- tmpfiles.d/meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tmpfiles.d') 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 -- cgit v1.2.1