]> granicus.if.org Git - python/commitdiff
bpo-36108: Avoid failing the build on race condition in clean (GH-12217)
authorSteve Dower <steve.dower@microsoft.com>
Thu, 7 Mar 2019 17:09:15 +0000 (09:09 -0800)
committerGitHub <noreply@github.com>
Thu, 7 Mar 2019 17:09:15 +0000 (09:09 -0800)
PCbuild/openssl.props

index 257cc857d0ec661215987196c317b41327eae5d1..8c78cd4ab10860aa8abe08175a9894641d18b8c0 100644 (file)
@@ -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