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

Ned Deily webhook-mailer at python.org
Tue Jul 2 18:34:03 EDT 2019


https://github.com/python/cpython/commit/9ad5e9edea08b0d377902d556624f03a2b8bb29b
commit: 9ad5e9edea08b0d377902d556624f03a2b8bb29b
branch: 3.7
author: Steve Dower <steve.dower at python.org>
committer: Ned Deily <nad at python.org>
date: 2019-07-01T22:17:29-04: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