Remove support for Python on MSYS

This commit is contained in:
Aetias
2025-01-09 08:29:10 +01:00
parent 46322369fc
commit 39850e99b9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ CC_INCLUDES = " ".join(f"-i {include}" for include in includes)
EXE = ""
WINE = ""
system = platform.system()
if system == "Windows" or system.startswith("MSYS") or system.startswith("MINGW"):
if system == "Windows":
system = "windows"
EXE = ".exe"
elif system == "Linux":
+1 -1
View File
@@ -13,7 +13,7 @@ root_path = tools_path.parent
EXE = ""
system = platform.system()
if system == "Windows" or system.startswith("MSYS") or system.startswith("MINGW"):
if system == "Windows":
system = "windows"
EXE = ".exe"
elif system == "Linux":