Commit e0c0c7e8 authored by Steve Dower's avatar Steve Dower Committed by GitHub

bpo-37156: Fix libssl DLL tag in MSI sources (GH-13866)

parent 013a18a6
......@@ -87,15 +87,16 @@
PyArchExt=$(PyArchExt);
PyTestExt=$(PyTestExt);
OptionalFeatureName=$(OutputName);
ssltag=-1_1;
</DefineConstants>
<DefineConstants Condition="'$(CRTRedist)' != ''">
$(DefineConstants);CRTRedist=$(CRTRedist);
</DefineConstants>
<DefineConstants Condition="$(Platform) != 'x64'">
$(DefineConstants);Suffix32=-32;ssltag=-1_1;
$(DefineConstants);Suffix32=-32;
</DefineConstants>
<DefineConstants Condition="$(Platform) == 'x64'">
$(DefineConstants);Suffix32=;ssltag=-1_1-x64;
$(DefineConstants);Suffix32=;
</DefineConstants>
</PropertyGroup>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment