gh-119679: Fix layout of PYD and DLL files on Windows when using PC/layout script (GH-120133)

(cherry picked from commit cccc9f63c6)

Co-authored-by: Steve Dower <steve.dower@python.org>
This commit is contained in:
Miss Islington (bot) 2024-06-06 17:38:31 +02:00 committed by GitHub
parent 13e5f455c4
commit fbdff3803a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -202,7 +202,7 @@ def get_layout(ns):
yield "LICENSE.txt", ns.build / "LICENSE.txt"
dest="" if ns.flat_dlls else "DLLs/"
dest = "" if ns.flat_dlls else "DLLs/"
for _, src in rglob(ns.build, "*.pyd"):
if ns.include_freethreaded:
@ -226,7 +226,7 @@ def get_layout(ns):
continue
if src in EXCLUDE_FROM_DLLS:
continue
yield from in_build(src.name, no_lib=True)
yield from in_build(src.name, dest=dest, no_lib=True)
if ns.zip_lib:
zip_name = PYTHON_ZIP_NAME