diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-07-27 19:32:35 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-07-27 19:32:35 +0200 |
commit | fce9abb22793505fbb09eccd0b1e24b5d578dbcc (patch) | |
tree | 1ecd2d6563bf7ee90c1facd70cf1b2b685e7a9de /network | |
parent | meson: use maps for udev program paths (diff) | |
download | systemd-fce9abb22793505fbb09eccd0b1e24b5d578dbcc.tar.xz systemd-fce9abb22793505fbb09eccd0b1e24b5d578dbcc.zip |
meson: use a/b instead of join_paths(a,b)
It is nicer and shorter.
Diffstat (limited to 'network')
-rw-r--r-- | network/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network/meson.build b/network/meson.build index b0e60f7217..ccfd79e8da 100644 --- a/network/meson.build +++ b/network/meson.build @@ -12,7 +12,7 @@ if conf.get('ENABLE_NETWORKD') == 1 if install_sysconfdir meson.add_install_script('sh', '-c', - mkdir_p.format(join_paths(sysconfdir, 'systemd/network'))) + mkdir_p.format(sysconfdir / 'systemd/network')) endif endif |