From: Simon McVittie Date: Fri, 24 Jun 2022 12:00:28 +0000 (+0100) Subject: test: Allow for scripts that don't get installed X-Git-Tag: dbus-1.15.0~32^2~75 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c8ecf552c8cce8219912918a625bc6346d470a71;p=thirdparty%2Fdbus.git test: Allow for scripts that don't get installed At the moment there aren't any like this, but it seems reasonable that we might get some later. Signed-off-by: Simon McVittie --- diff --git a/test/meson.build b/test/meson.build index 787556420..fa2338cc0 100644 --- a/test/meson.build +++ b/test/meson.build @@ -566,8 +566,9 @@ endif foreach script: scripts name = script.get('name') exec = script.get('exec', script.get('name')) + install = script.get('install', true) - if install_tests + if install_tests and install install_data(exec, install_mode: 'rwxr-xr-x', install_dir: test_exec_dir,