diff options
author | Steve Dower <steve.dower@python.org> | 2019-06-14 21:20:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-14 21:20:16 (GMT) |
commit | f78e66c3c9cd3a65cedba8d35f8e715e0535d8bf (patch) | |
tree | b3e2518679fe351215dff488ee9300d4c42dda3e /Tools/msi/tcltk | |
parent | 322281e7caa161d5b9c0f3fbf79efd15299f3594 (diff) | |
download | cpython-f78e66c3c9cd3a65cedba8d35f8e715e0535d8bf.zip cpython-f78e66c3c9cd3a65cedba8d35f8e715e0535d8bf.tar.gz cpython-f78e66c3c9cd3a65cedba8d35f8e715e0535d8bf.tar.bz2 |
Implement Windows release builds in Azure Pipelines (GH-14065)
Includes backported fixes from GH-14091
Diffstat (limited to 'Tools/msi/tcltk')
-rw-r--r-- | Tools/msi/tcltk/tcltk.wixproj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/msi/tcltk/tcltk.wixproj b/Tools/msi/tcltk/tcltk.wixproj index fae353f..218f3d1 100644 --- a/Tools/msi/tcltk/tcltk.wixproj +++ b/Tools/msi/tcltk/tcltk.wixproj @@ -20,10 +20,10 @@ <WxlTemplate Include="*.wxl_template" /> </ItemGroup> <ItemGroup> - <InstallFiles Include="$(tcltkDir)lib\**\*"> - <SourceBase>$(tcltkDir)</SourceBase> + <InstallFiles Include="$(TclTkLibraryDir)\**\*"> + <SourceBase>$(TclTkLibraryDir)</SourceBase> <Source>!(bindpath.tcltk)</Source> - <TargetBase>$(tcltkDir)lib</TargetBase> + <TargetBase>$(TclTkLibraryDir)</TargetBase> <Target_>tcl\</Target_> <Group>tcltk_lib</Group> </InstallFiles> |