[Python-checkins] bpo-37156: Fix libssl DLL tag in MSI sources (GH-14219)

Steve Dower webhook-mailer at python.org
Tue Jun 18 21:05:37 EDT 2019


https://github.com/python/cpython/commit/43b97ae15c8cbb8c383314bb75c867d0f2f34376
commit: 43b97ae15c8cbb8c383314bb75c867d0f2f34376
branch: 3.7
author: Steve Dower <steve.dower at python.org>
committer: GitHub <noreply at github.com>
date: 2019-06-18T18:05:33-07:00
summary:

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

files:
M Tools/msi/msi.props

diff --git a/Tools/msi/msi.props b/Tools/msi/msi.props
index 0fe822af9319..5da901c0215a 100644
--- a/Tools/msi/msi.props
+++ b/Tools/msi/msi.props
@@ -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>
 



More information about the Python-checkins mailing list