summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2019-03-07 17:09:15 (GMT)
committerGitHub <noreply@github.com>2019-03-07 17:09:15 (GMT)
commit2f8f56499c20af70ff5037fdbc5d738e56d9eab0 (patch)
tree78112379eaa578fef7206defd77e7b4a3accb99a
parent14bab7abeea195c97f4166740ee1d15471964244 (diff)
downloadcpython-2f8f56499c20af70ff5037fdbc5d738e56d9eab0.zip
cpython-2f8f56499c20af70ff5037fdbc5d738e56d9eab0.tar.gz
cpython-2f8f56499c20af70ff5037fdbc5d738e56d9eab0.tar.bz2
bpo-36108: Avoid failing the build on race condition in clean (GH-12217)
-rw-r--r--PCbuild/openssl.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/openssl.props b/PCbuild/openssl.props
index 257cc85..8c78cd4 100644
--- a/PCbuild/openssl.props
+++ b/PCbuild/openssl.props
@@ -23,6 +23,6 @@
<Copy SourceFiles="@(_SSLDLL)" DestinationFolder="$(OutDir)" />
</Target>
<Target Name="_CleanSSLDLL" BeforeTargets="Clean">
- <Delete Files="@(_SSLDLL->'$(OutDir)%(Filename)%(Extension)')" />
+ <Delete Files="@(_SSLDLL->'$(OutDir)%(Filename)%(Extension)')" TreatErrorsAsWarnings="true" />
</Target>
</Project> \ No newline at end of file