From 0c52824bf60abcaeead06238a599eab476f1e4b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Tue, 23 Apr 2024 22:23:49 +0200 Subject: [PATCH] meson: Fix invocation of build.py We should not rely on it being executable and having a shebang. --- agents/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents/meson.build b/agents/meson.build index 4a55408d..34108ea2 100644 --- a/agents/meson.build +++ b/agents/meson.build @@ -1,4 +1,4 @@ -build_agent = find_program('build.py') +build_agent = [python, files('build.py')] subdir('fs') subdir('tracer')