1
0
mirror of https://github.com/systemd/systemd.git synced 2025-11-01 00:24:12 +03:00

meson: use a/b instead of join_paths(a,b)

It is nicer and shorter.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2021-07-27 19:32:35 +02:00
parent 0b5f1bd49e
commit fce9abb227
22 changed files with 163 additions and 164 deletions

View File

@@ -6,7 +6,7 @@ if bashcompletiondir == ''
if bash_completion.found()
bashcompletiondir = bash_completion.get_pkgconfig_variable('completionsdir')
else
bashcompletiondir = join_paths(datadir, 'bash-completion/completions')
bashcompletiondir = datadir / 'bash-completion/completions'
endif
endif