We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c19948 commit f8d835eCopy full SHA for f8d835e
cpython-windows/build.py
@@ -370,7 +370,8 @@ def hack_props(
370
libffi_path = td / "libffi"
371
tcltk_path = td / ("cpython-bin-deps-%s" % tcltk_commit)
372
xz_path = td / ("xz-%s" % xz_version)
373
- zlib_path = td / ("%s-%s" % (zlib_entry, zlib_version))
+ zlib_prefix = "cpython-bin-deps-" if zlib_entry == "zlib-ng" else ""
374
+ zlib_path = td / ("%s%s-%s" % (zlib_prefix, zlib_entry, zlib_version))
375
mpdecimal_path = td / ("mpdecimal-%s" % mpdecimal_version)
376
377
openssl_root = td / "openssl" / arch
0 commit comments