summaryrefslogtreecommitdiff
path: root/network
diff options
context:
space:
mode:
authorMichael Biebl <mbiebl@gmail.com>2017-04-13 10:30:56 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-23 21:47:28 -0400
commite17e5ba9bff633b5f2b6e9950b3bb64b59079c74 (patch)
tree9444c5744f3f45573c2cc7e10978ef65151147e6 /network
parent082ef2adbddecde5432608298a19551319b162c5 (diff)
downloadsystemd-e17e5ba9bff633b5f2b6e9950b3bb64b59079c74.tar.gz
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 'network')
-rw-r--r--network/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/network/meson.build b/network/meson.build
index d2eb89ad4d..d36aadb9da 100644
--- a/network/meson.build
+++ b/network/meson.build
@@ -8,5 +8,5 @@ if conf.get('ENABLE_NETWORKD', 0) == 1
install_dir : networkdir)
meson.add_install_script('sh', '-c',
- mkdir_p.format(sysconfdir + '/systemd/network'))
+ mkdir_p.format(join_paths(sysconfdir, 'systemd/network')))
endif