diff options
author | Tomas Krizek <tomas.krizek@nic.cz> | 2020-10-16 11:04:28 +0200 |
---|---|---|
committer | Tomas Krizek <tomas.krizek@nic.cz> | 2020-11-23 15:44:59 +0100 |
commit | f527ec4eeaea36e817d18670a426d3da47b3896c (patch) | |
tree | cc195d4254247c089f507d4f321f0d136966716e /etc | |
parent | Merge branch 'pgp-keyring' into 'master' (diff) | |
download | knot-resolver-f527ec4eeaea36e817d18670a426d3da47b3896c.tar.xz knot-resolver-f527ec4eeaea36e817d18670a426d3da47b3896c.zip |
meson: use / instead of join_paths
Diffstat (limited to 'etc')
-rw-r--r-- | etc/config/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/config/meson.build b/etc/config/meson.build index c01debf6..a4a9c500 100644 --- a/etc/config/meson.build +++ b/etc/config/meson.build @@ -21,7 +21,7 @@ install_data( # kresd.conf install_kresd_conf = get_option('install_kresd_conf') == 'enabled' if get_option('install_kresd_conf') == 'auto' - if run_command(['test', '-r', join_paths(etc_dir, 'kresd.conf')]).returncode() == 1 + if run_command(['test', '-r', etc_dir / 'kresd.conf']).returncode() == 1 install_kresd_conf = true endif endif |