From c8ecf552c8cce8219912918a625bc6346d470a71 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 24 Jun 2022 13:00:28 +0100 Subject: [PATCH] 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 --- test/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index 78755642..fa2338cc 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,