From: Luca Boccassi Date: Fri, 28 Mar 2025 03:12:12 +0000 (+0000) Subject: test: always install test-resolve subdir X-Git-Tag: v258-rc1~994^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=980aced10bbff74e0932ad5dcc76fd2d4082b14c;p=thirdparty%2Fsystemd.git test: always install test-resolve subdir Content is also used by unit tests, not just resolved tests, so they are needed even when resolved is disabled, as unit tests are still built and run --- diff --git a/test/meson.build b/test/meson.build index 9ec9e515e9c..b23553e34a8 100644 --- a/test/meson.build +++ b/test/meson.build @@ -359,11 +359,9 @@ if install_tests exclude_files : '.gitattributes', install_dir : testdata_dir) endif - if conf.get('ENABLE_RESOLVE') == 1 - install_subdir('test-resolve', - exclude_files : '.gitattributes', - install_dir : testdata_dir) - endif + install_subdir('test-resolve', + exclude_files : '.gitattributes', + install_dir : testdata_dir) # The unit tests implemented as shell scripts expect to find testdata/ # in the directory where they are stored.