Skip to content

Commit 34b3985

Browse files
bpo-36108: Avoid failing the build on race condition in clean (GH-12217)
(cherry picked from commit 2f8f564) Co-authored-by: Steve Dower <[email protected]>
1 parent daad2c4 commit 34b3985

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PCbuild/openssl.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
<Copy SourceFiles="@(_SSLDLL)" DestinationFolder="$(OutDir)" />
2424
</Target>
2525
<Target Name="_CleanSSLDLL" BeforeTargets="Clean">
26-
<Delete Files="@(_SSLDLL->'$(OutDir)%(Filename)%(Extension)')" />
26+
<Delete Files="@(_SSLDLL->'$(OutDir)%(Filename)%(Extension)')" TreatErrorsAsWarnings="true" />
2727
</Target>
2828
</Project>

0 commit comments

Comments
 (0)