Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1diff --git a/meson.build b/meson.build 2index 01e18a9..5dbb2fc 100644 3--- a/meson.build 4+++ b/meson.build 5@@ -12,8 +12,8 @@ libdir = join_paths(prefix, get_option('libdir')) 6 libexecdir = join_paths(prefix, get_option('libexecdir')) 7 localedir = join_paths(prefix, get_option('localedir')) 8 9-installed_tests_metadir = join_paths(datadir, 'installed-tests', meson.project_name()) 10-installed_tests_execdir = join_paths(libexecdir, 'installed-tests', meson.project_name()) 11+installed_tests_metadir = join_paths(get_option('installed_test_prefix'), 'share', 'installed-tests', meson.project_name()) 12+installed_tests_execdir = join_paths(get_option('installed_test_prefix'), 'libexec', 'installed-tests', meson.project_name()) 13 14 cc = meson.get_compiler('c') 15 host_system = host_machine.system() 16diff --git a/meson_options.txt b/meson_options.txt 17index c566ccd..80f7c33 100644 18--- a/meson_options.txt 19+++ b/meson_options.txt 20@@ -10,6 +10,7 @@ option('environment_proxy', type: 'feature', value: 'auto', description: 'suppor 21 option('libproxy', type: 'feature', value: 'auto', description: 'support for libproxy proxy configration') 22 option('gnome_proxy', type: 'feature', value: 'auto', description: 'support for GNOME desktop proxy configuration') 23 option('installed_tests', type: 'boolean', value: false, description: 'enable installed tests') 24+option('installed_test_prefix', type: 'string', value: '', description: 'Prefix for installed tests') 25 option('debug_logs', type: 'boolean', value: false, description: 'enable debug log messages (slow)') 26 27 # Deprecated, use -Ddefault_library=static instead.