Skip to content

Commit

Permalink
bpo-35596: Fix vcruntime140.dll being added to embeddable distro mult…
Browse files Browse the repository at this point in the history
…iple times. (GH-11329)

https://bugs.python.org/issue35596
(cherry picked from commit 59c2aa2)

Co-authored-by: Steve Dower <steve.dower@microsoft.com>
  • Loading branch information
miss-islington and zooba committed Dec 28, 2018
1 parent 705b599 commit bbf6954
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix vcruntime140.dll being added to embeddable distro multiple times.
2 changes: 1 addition & 1 deletion PC/layout/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

VENV_DIRS_ONLY = FileNameSet("venv", "ensurepip")

EXCLUDE_FROM_PYDS = FileStemSet("python*", "pyshellext")
EXCLUDE_FROM_PYDS = FileStemSet("python*", "pyshellext", "vcruntime*")
EXCLUDE_FROM_LIB = FileNameSet("*.pyc", "__pycache__", "*.pickle")
EXCLUDE_FROM_PACKAGED_LIB = FileNameSet("readme.txt")
EXCLUDE_FROM_COMPILE = FileNameSet("badsyntax_*", "bad_*")
Expand Down

0 comments on commit bbf6954

Please sign in to comment.