diff --git a/test cases/common/159 reserved targets/meson.build b/test cases/common/159 reserved targets/meson.build index 26572c0e9..24fd937bc 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)