[Python-checkins] bpo-36108: Avoid failing the build on race condition in clean (GH-12217)

Steve Dower webhook-mailer at python.org
Thu Mar 7 12:09:18 EST 2019


https://github.com/python/cpython/commit/2f8f56499c20af70ff5037fdbc5d738e56d9eab0
commit: 2f8f56499c20af70ff5037fdbc5d738e56d9eab0
branch: master
author: Steve Dower <steve.dower at microsoft.com>
committer: GitHub <noreply at github.com>
date: 2019-03-07T09:09:15-08:00
summary:

bpo-36108: Avoid failing the build on race condition in clean (GH-12217)

files:
M PCbuild/openssl.props

diff --git a/PCbuild/openssl.props b/PCbuild/openssl.props
index 257cc857d0ec..8c78cd4ab108 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



More information about the Python-checkins mailing list