summaryrefslogtreecommitdiff
path: root/PCbuild
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-03-07 09:44:53 -0800
committerGitHub <noreply@github.com>2019-03-07 09:44:53 -0800
commit34b398559fc47745473a39313a9e2ec17fe1d9ad (patch)
tree5ee62a56bde38a1ddcc24a608cae6d87ed4fc556 /PCbuild
parentdaad2c482c91de32d8305abbccc76a5de8b3a8be (diff)
downloadcpython-git-34b398559fc47745473a39313a9e2ec17fe1d9ad.tar.gz
bpo-36108: Avoid failing the build on race condition in clean (GH-12217)
(cherry picked from commit 2f8f56499c20af70ff5037fdbc5d738e56d9eab0) Co-authored-by: Steve Dower <steve.dower@microsoft.com>
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/openssl.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/openssl.props b/PCbuild/openssl.props
index 257cc857d0..8c78cd4ab1 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