[Python-checkins] bpo-45022: Fix libffi DLL name in Windows installer sources (GH-28203)

zooba webhook-mailer at python.org
Tue Sep 7 15:18:40 EDT 2021


https://github.com/python/cpython/commit/4dc4300c686f543d504ab6fa9fe600eaf11bb695
commit: 4dc4300c686f543d504ab6fa9fe600eaf11bb695
branch: main
author: giovanniwijaya <16949408+giovanniwijaya at users.noreply.github.com>
committer: zooba <steve.dower at microsoft.com>
date: 2021-09-07T20:18:32+01:00
summary:

bpo-45022: Fix libffi DLL name in Windows installer sources (GH-28203)

files:
M Tools/msi/lib/lib_files.wxs

diff --git a/Tools/msi/lib/lib_files.wxs b/Tools/msi/lib/lib_files.wxs
index 037fc38f1d9cbf..64c046e6dd9108 100644
--- a/Tools/msi/lib/lib_files.wxs
+++ b/Tools/msi/lib/lib_files.wxs
@@ -23,7 +23,7 @@
                 <File Name="libssl$(var.ssltag).dll" KeyPath="yes" />
             </Component>
             <Component Id="libffi.dll" Directory="DLLs" Guid="*">
-                <File Name="libffi-7.dll" KeyPath="yes" />
+                <File Name="libffi-8.dll" KeyPath="yes" />
             </Component>
             <Component Id="venvlauncher.exe" Directory="Lib_venv_scripts_nt" Guid="*">
                 <File Name="python.exe" Source="venvlauncher.exe" KeyPath="yes" />



More information about the Python-checkins mailing list