Skip to content

Commit e0c0c7e

Browse files
authored
bpo-37156: Fix libssl DLL tag in MSI sources (GH-13866)
1 parent 013a18a commit e0c0c7e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Tools/msi/msi.props

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,16 @@
8787
PyArchExt=$(PyArchExt);
8888
PyTestExt=$(PyTestExt);
8989
OptionalFeatureName=$(OutputName);
90+
ssltag=-1_1;
9091
</DefineConstants>
9192
<DefineConstants Condition="'$(CRTRedist)' != ''">
9293
$(DefineConstants);CRTRedist=$(CRTRedist);
9394
</DefineConstants>
9495
<DefineConstants Condition="$(Platform) != 'x64'">
95-
$(DefineConstants);Suffix32=-32;ssltag=-1_1;
96+
$(DefineConstants);Suffix32=-32;
9697
</DefineConstants>
9798
<DefineConstants Condition="$(Platform) == 'x64'">
98-
$(DefineConstants);Suffix32=;ssltag=-1_1-x64;
99+
$(DefineConstants);Suffix32=;
99100
</DefineConstants>
100101
</PropertyGroup>
101102

0 commit comments

Comments
 (0)