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 /modules/experimental_dot_auth | |
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 'modules/experimental_dot_auth')
-rw-r--r-- | modules/experimental_dot_auth/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/experimental_dot_auth/meson.build b/modules/experimental_dot_auth/meson.build index c9674ee1..e2e1edf1 100644 --- a/modules/experimental_dot_auth/meson.build +++ b/modules/experimental_dot_auth/meson.build @@ -9,5 +9,5 @@ lua_mod_src += [ install_subdir( 'static', strip_directory: true, - install_dir: join_paths(modules_dir, 'http'), + install_dir: modules_dir / 'http', ) |