From e32fa28a6cb5df7b79b09732bb6e965f68a35e52 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 4 May 2020 10:52:11 +0200 Subject: [PATCH] Use python3 instead of python. `python` binary is not installed on all platform. But `python3` is (because meson is python3). And the script we launch is python3 so use the correct version. --- static/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/meson.build b/static/meson.build index cf43624ea..5c6d2899b 100644 --- a/static/meson.build +++ b/static/meson.build @@ -1,4 +1,4 @@ -resource_files = run_command(find_program('python'), +resource_files = run_command(find_program('python3'), '-c', 'import sys; f=open(sys.argv[1]); print(f.read())', files('resources_list.txt')