Philipp Hörist pushed to branch master at gajim / gajim


Commits:
cdc497f4 by Philipp Hörist at 2026-01-12T22:01:49+01:00
ci: Window: Call script with python3 executable

- - - - -


1 changed file:

- win/misc/create_launcher.py


Changes:

=====================================
win/misc/create_launcher.py
=====================================
@@ -44,8 +44,10 @@ def get_build_args() -> list[str]:
         os.path.dirname(sys.executable), python_name + "-config"
     )
 
-    cflags = subprocess.check_output([python_config, "--cflags"]).strip()
-    libs = subprocess.check_output([python_config, "--libs"]).strip()
+    cflags = subprocess.check_output(
+        [sys.executable, python_config, "--cflags"]
+    ).strip()
+    libs = subprocess.check_output([sys.executable, python_config, 
"--libs"]).strip()
 
     cflags = os.fsdecode(cflags)
     libs = os.fsdecode(libs)



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/cdc497f425a4107f71a918f18d108a837a9439f9

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/cdc497f425a4107f71a918f18d108a837a9439f9
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to