summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authoradang1345 <adang1345@gmail.com>2024-02-08 21:42:45 (GMT)
committerGitHub <noreply@github.com>2024-02-08 21:42:45 (GMT)
commit5914a211ef5542edd1f792c2684e373a42647b04 (patch)
treece81450a6044c772dccbf92faa178b91a363ac69 /PCbuild
parented1a8daf10bc471f929c14c2d1e0474d44a63b00 (diff)
downloadcpython-5914a211ef5542edd1f792c2684e373a42647b04.zip
cpython-5914a211ef5542edd1f792c2684e373a42647b04.tar.gz
cpython-5914a211ef5542edd1f792c2684e373a42647b04.tar.bz2
gh-115167: Exclude vcruntime140_threads.dll from Windows build output (GH-115176)
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pyproject.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
index fd5fbc9..9c85e5e 100644
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -250,7 +250,7 @@ public override bool Execute() {
<VCRuntimeDLL Include="$(VCRuntimeDLL)" />
</ItemGroup>
<ItemGroup Condition="$(VCInstallDir) != '' and $(VCRuntimeDLL) == ''">
- <VCRuntimeDLL Include="$(VCRedistDir)\Microsoft.VC*.CRT\vcruntime*.dll" />
+ <VCRuntimeDLL Include="$(VCRedistDir)\Microsoft.VC*.CRT\vcruntime*.dll" Exclude="$(VCRedistDir)\Microsoft.VC*.CRT\vcruntime*_threads.dll" />
</ItemGroup>
<Warning Text="vcruntime*.dll not found under $(VCRedistDir)." Condition="@(VCRuntimeDLL) == ''" />