From: Vladimír Čunát Date: Wed, 3 Dec 2025 13:33:34 +0000 (+0100) Subject: modules/experimental_dot_auth: fix copy&paste error in meson X-Git-Tag: v6.1.0~14^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c086c15ee3258c397351c0e9a90df8019eba5df;p=thirdparty%2Fknot-resolver.git modules/experimental_dot_auth: fix copy&paste error in meson There's no ./static dir to even install. Apparently this snippet came from modules/http. Discovered thanks to meson reporting: NOTICE: Future-deprecated features used: * 0.60.0: {'install_subdir with empty directory'} --- diff --git a/modules/experimental_dot_auth/meson.build b/modules/experimental_dot_auth/meson.build index e2e1edf1c..6efca81eb 100644 --- a/modules/experimental_dot_auth/meson.build +++ b/modules/experimental_dot_auth/meson.build @@ -5,9 +5,3 @@ lua_mod_src += [ files('experimental_dot_auth.lua'), ] -# install static files -install_subdir( - 'static', - strip_directory: true, - install_dir: modules_dir / 'http', -)