Skip to content

Commit

Permalink
#3532 use MINGW_PACKAGE_PREFIX if it exists
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Nov 29, 2024
1 parent fab8d9f commit 8166eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/MSWindows/BUILD.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
PYTHON = os.environ.get("PYTHON", "python%i.%i" % sys.version_info[:2])
MINGW_PREFIX = os.environ.get("MINGW_PREFIX", "")
MSYSTEM_CARCH = os.environ.get("MSYSTEM_CARCH", "x86_64")
PACKAGE_PREFIX = f"mingw-w64-{MSYSTEM_CARCH}-"
PACKAGE_PREFIX = os.environ.get("MINGW_PACKAGE_PREFIX", f"mingw-w64-{MSYSTEM_CARCH}") + "-"
MSYS2_PACKAGE_PREFIX = "msys2-"
MSYS_DLL_PREFIX = "msys-"

Expand Down

0 comments on commit 8166eee

Please sign in to comment.