diff options
author | Steve Dower <steve.dower@python.org> | 2019-06-06 16:06:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-06 16:06:51 (GMT) |
commit | e0c0c7e8c9f8153a54b92e43aa3d09e69a9fd0c0 (patch) | |
tree | 44a9a6c3d2fba0d58fabc7101eca08a8196cf2dd /Tools | |
parent | 013a18a65167725f140c0395211050ae03501b12 (diff) | |
download | cpython-e0c0c7e8c9f8153a54b92e43aa3d09e69a9fd0c0.zip cpython-e0c0c7e8c9f8153a54b92e43aa3d09e69a9fd0c0.tar.gz cpython-e0c0c7e8c9f8153a54b92e43aa3d09e69a9fd0c0.tar.bz2 |
bpo-37156: Fix libssl DLL tag in MSI sources (GH-13866)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.props | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Tools/msi/msi.props b/Tools/msi/msi.props index 0fe822a..5da901c 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> |