Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9b8a1fa

Browse files
committed
Issue #24847: Fixes tcltk installer layout of VC runtime DLL
1 parent cae101f commit 9b8a1fa

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Core and Builtins
1313
Library
1414
-------
1515

16+
- Issue #24847: Fixes tcltk installer layout of VC runtime DLL
17+
1618
- Issue #24839: platform._syscmd_ver raises DeprecationWarning
1719

1820
What's New in Python 3.5.0 release candidate 1?

Tools/msi/tcltk/tcltk.wixproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
<Group>tcltk_dlls</Group>
2929
</InstallFiles>
3030
<InstallFiles Include="$(VCInstallDir)redist\$(Platform)\Microsoft.VC$(PlatformToolset.Substring(1)).CRT\vcruntime$(PlatformToolset.Substring(1)).dll">
31-
<SourceBase>$(VCInstallDir)redist\$(Platform)\</SourceBase>
32-
<Source>$(VCInstallDir)redist\$(Platform)\</Source>
33-
<TargetBase>$(VCInstallDir)redist\$(Platform)\</TargetBase>
31+
<SourceBase>$(VCInstallDir)redist\$(Platform)\Microsoft.VC$(PlatformToolset.Substring(1)).CRT\</SourceBase>
32+
<Source>$(VCInstallDir)redist\$(Platform)\Microsoft.VC$(PlatformToolset.Substring(1)).CRT\</Source>
33+
<TargetBase>$(VCInstallDir)redist\$(Platform)\Microsoft.VC$(PlatformToolset.Substring(1)).CRT\</TargetBase>
3434
<Target_>DLLs\</Target_>
3535
<Group>tcltk_dlls</Group>
3636
</InstallFiles>

0 commit comments

Comments
 (0)