File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -352,13 +352,15 @@ def hack_props(
352
352
xz_version = DOWNLOADS ["xz" ]["version" ]
353
353
zlib_version = DOWNLOADS ["zlib" ]["version" ]
354
354
tcltk_commit = DOWNLOADS ["tk-windows-bin" ]["git_commit" ]
355
+ mpdecimal_version = DOWNLOADS ["mpdecimal" ]["version" ]
355
356
356
357
sqlite_path = td / ("sqlite-autoconf-%s" % sqlite_version )
357
358
bzip2_path = td / ("bzip2-%s" % bzip2_version )
358
359
libffi_path = td / "libffi"
359
360
tcltk_path = td / ("cpython-bin-deps-%s" % tcltk_commit )
360
361
xz_path = td / ("xz-%s" % xz_version )
361
362
zlib_path = td / ("zlib-%s" % zlib_version )
363
+ mpdecimal_path = td / ("mpdecimal-%s" % mpdecimal_version )
362
364
363
365
openssl_root = td / "openssl" / arch
364
366
openssl_libs_path = openssl_root / "lib"
@@ -398,6 +400,9 @@ def hack_props(
398
400
elif b"<zlibDir" in line :
399
401
line = b"<zlibDir>%s\\ </zlibDir>" % zlib_path
400
402
403
+ elif b"<mpdecimalDir" in line :
404
+ line = b"<mpdecimalDir>%s\\ </mpdecimalDir>" % mpdecimal_path
405
+
401
406
lines .append (line )
402
407
403
408
with python_props_path .open ("wb" ) as fh :
You can’t perform that action at this time.
0 commit comments