diff options
author | CoderTCY <73740771+CoderTCY@users.noreply.github.com> | 2024-11-19 17:19:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-19 17:19:33 (GMT) |
commit | 88dc84bcf9fef32afa9af0ab41fa467c9733483f (patch) | |
tree | 9c6a32bb195712c47978b77e842fe506bf4f41f1 /Tools/msi/tcltk | |
parent | 29cbcbd73bbfd8c953c0b213fb33682c289934ff (diff) | |
download | cpython-88dc84bcf9fef32afa9af0ab41fa467c9733483f.zip cpython-88dc84bcf9fef32afa9af0ab41fa467c9733483f.tar.gz cpython-88dc84bcf9fef32afa9af0ab41fa467c9733483f.tar.bz2 |
gh-125729: Makes the installation of the turtle module dependent on the Tcl/Tk install option (GH-126176)
Diffstat (limited to 'Tools/msi/tcltk')
-rw-r--r-- | Tools/msi/tcltk/tcltk.wixproj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/tcltk/tcltk.wixproj b/Tools/msi/tcltk/tcltk.wixproj index 218f3d1..c8b7ab7 100644 --- a/Tools/msi/tcltk/tcltk.wixproj +++ b/Tools/msi/tcltk/tcltk.wixproj @@ -28,7 +28,7 @@ <Group>tcltk_lib</Group> </InstallFiles> - <InstallFiles Include="$(PySourcePath)Lib\tkinter\**\*;$(PySourcePath)Lib\idlelib\**\*;$(PySourcePath)Lib\turtledemo\**\*" + <InstallFiles Include="$(PySourcePath)Lib\tkinter\**\*;$(PySourcePath)Lib\idlelib\**\*;$(PySourcePath)Lib\turtledemo\**\*;$(PySourcePath)Lib\turtle.py" Exclude="$(PySourcePath)Lib\**\*.pyc;$(PySourcePath)Lib\**\*.pyo"> <SourceBase>$(PySourcePath)</SourceBase> <Source>!(bindpath.src)</Source> @@ -39,4 +39,4 @@ </ItemGroup> <Import Project="..\msi.targets" /> -</Project>
\ No newline at end of file +</Project> |