aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test cases/common/159 reserved targets/meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/test cases/common/159 reserved targets/meson.build b/test cases/common/159 reserved targets/meson.build
index 26572c0..24fd937 100644
--- a/test cases/common/159 reserved targets/meson.build
+++ b/test cases/common/159 reserved targets/meson.build
@@ -26,6 +26,9 @@ subdir('uninstall')
subdir('runtarget')
+py3 = import('python3').find_python()
+
custom_target('ctlist-test', output : 'out.txt',
- command : ['echo'], capture : true,
+ command : [py3, '-c', 'print("")'],
+ capture : true,
build_by_default : true)