From 78a42db250f9f3be4d10ba68aedc0f6e71e5db65 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Tue, 5 Sep 2023 12:48:11 +0300 Subject: [PATCH] Invoke the extension generator through the python3 binary On Windows it's not executable directly. --- Build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Build b/Build index c195c2c8..19db08dc 100644 --- a/Build +++ b/Build @@ -31,7 +31,8 @@ package "mspgl" in_suffix ".glext"; out_suffix ".cpp"; out_suffix ".h"; - command "scripts/extgen.py"; + command "python3"; + argument "scripts/extgen.py"; if_arch "android" { argument "gles2"; -- 2.45.2