diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-09-09 04:39:01 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-09-09 04:39:01 (GMT) |
commit | fcbe1df4afe10eed49e97bf08ba748f9140a5bf3 (patch) | |
tree | 24df31883a5d686b9536fa7ad0db07616d2c7aa1 /Tools/msi/exe | |
parent | 0130e2991d901d43237d21df47c2adc8222233ba (diff) | |
download | cpython-fcbe1df4afe10eed49e97bf08ba748f9140a5bf3.zip cpython-fcbe1df4afe10eed49e97bf08ba748f9140a5bf3.tar.gz cpython-fcbe1df4afe10eed49e97bf08ba748f9140a5bf3.tar.bz2 |
Issue #25027: Reverts partial-static build options and adds vcruntime140.dll to Windows installation.
Diffstat (limited to 'Tools/msi/exe')
-rw-r--r-- | Tools/msi/exe/exe_files.wxs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/msi/exe/exe_files.wxs b/Tools/msi/exe/exe_files.wxs index 3b5fce4..9e47b5d 100644 --- a/Tools/msi/exe/exe_files.wxs +++ b/Tools/msi/exe/exe_files.wxs @@ -29,6 +29,9 @@ <Component Id="pythonw.exe" Directory="InstallDirectory" Guid="$(var.PythonwExeComponentGuid)"> <File Name="pythonw.exe" KeyPath="yes" /> </Component> + <Component Id="vcruntime140.dll" Directory="InstallDirectory" Guid="*"> + <File Name="vcruntime140.dll" Source="!(bindpath.redist)vcruntime140.dll" KeyPath="yes" /> + </Component> </ComponentGroup> </Fragment> |