From 39850e99b9be29a774a6d3d9b748a6484df15c7f Mon Sep 17 00:00:00 2001 From: Aetias Date: Thu, 9 Jan 2025 08:29:10 +0100 Subject: [PATCH] Remove support for Python on MSYS --- tools/configure.py | 2 +- tools/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/configure.py b/tools/configure.py index b1416e0f..10265334 100644 --- a/tools/configure.py +++ b/tools/configure.py @@ -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": diff --git a/tools/setup.py b/tools/setup.py index 44d146f7..87f64099 100644 --- a/tools/setup.py +++ b/tools/setup.py @@ -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":