Philipp Hörist pushed to branch master at gajim / gajim
Commits:
278c3e23 by Philipp Hörist at 2026-01-12T19:49:11+01:00
ci: Windows: Don't assume script language
The python3-config was changed in recent msys releases
- - - - -
1 changed file:
- win/misc/create_launcher.py
Changes:
=====================================
win/misc/create_launcher.py
=====================================
@@ -44,8 +44,8 @@ def get_build_args() -> list[str]:
os.path.dirname(sys.executable), python_name + "-config"
)
- cflags = subprocess.check_output(["sh", python_config, "--cflags"]).strip()
- libs = subprocess.check_output(["sh", python_config, "--libs"]).strip()
+ cflags = subprocess.check_output([python_config, "--cflags"]).strip()
+ libs = subprocess.check_output([python_config, "--libs"]).strip()
cflags = os.fsdecode(cflags)
libs = os.fsdecode(libs)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/278c3e232150f49c41a389348f11a1a67c3bc982
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/278c3e232150f49c41a389348f11a1a67c3bc982
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]