From 14d814d87fda6c9876565f4ddb858b015d3d6353 Mon Sep 17 00:00:00 2001 From: Fred Morcos Date: Thu, 21 Mar 2024 12:16:17 +0100 Subject: [PATCH] Meson: Fix when unit-tests-backends is enabled but module-remote isn't --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 3c860086e6..780e28df69 100644 --- a/meson.build +++ b/meson.build @@ -934,7 +934,7 @@ if get_option('unit-tests') ) endif -if get_option('unit-tests-backends') +if get_option('module-remote') != 'disabled' and get_option('unit-tests-backends') libpdns_module_remotebackend_test_common = declare_dependency( link_whole: static_library( 'pdns-test-remotebackend', -- 2.47.2