[Python-checkins] cpython (3.5): Issue #24771: Adds vcruntime DLL to tcltk package

steve.dower python-checkins at python.org
Tue Aug 4 01:22:41 CEST 2015


https://hg.python.org/cpython/rev/e9f91d47c8ab
changeset:   97233:e9f91d47c8ab
branch:      3.5
parent:      97231:fedf802b6ec1
user:        Steve Dower <steve.dower at microsoft.com>
date:        Mon Aug 03 16:21:12 2015 -0700
summary:
  Issue #24771: Adds vcruntime DLL to tcltk package

files:
  Tools/msi/tcltk/tcltk.wixproj |  7 +++++++
  1 files changed, 7 insertions(+), 0 deletions(-)


diff --git a/Tools/msi/tcltk/tcltk.wixproj b/Tools/msi/tcltk/tcltk.wixproj
--- a/Tools/msi/tcltk/tcltk.wixproj
+++ b/Tools/msi/tcltk/tcltk.wixproj
@@ -27,6 +27,13 @@
             <Target_>DLLs\</Target_>
             <Group>tcltk_dlls</Group>
         </InstallFiles>
+        <InstallFiles Include="$(VCInstallDir)redist\$(Platform)\Microsoft.VC$(PlatformToolset.Substring(1)).CRT\vcruntime$(PlatformToolset.Substring(1)).dll">
+            <SourceBase>$(VCInstallDir)redist\$(Platform)\</SourceBase>
+            <Source>$(VCInstallDir)redist\$(Platform)\</Source>
+            <TargetBase>$(VCInstallDir)redist\$(Platform)\</TargetBase>
+            <Target_>DLLs\</Target_>
+            <Group>tcltk_dlls</Group>
+        </InstallFiles>
 
         <InstallFiles Include="$(tcltkDir)lib\**\*">
             <SourceBase>$(tcltkDir)</SourceBase>

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list