diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-10-31 19:41:46 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-10-31 19:41:46 (GMT) |
commit | 04a4316acc1bc4cfeb131517ddeac34f50c6c5c9 (patch) | |
tree | fd7b45293e194d1793af0fb9c688ba0c08c0d93b /Tools/msi/tcltk | |
parent | 940f6a8f11b5ef0f9fa85b0be4b95608efebb2e8 (diff) | |
download | cpython-04a4316acc1bc4cfeb131517ddeac34f50c6c5c9.zip cpython-04a4316acc1bc4cfeb131517ddeac34f50c6c5c9.tar.gz cpython-04a4316acc1bc4cfeb131517ddeac34f50c6c5c9.tar.bz2 |
Issue #25450: Updates shortcuts to start Python in installation directory.
Diffstat (limited to 'Tools/msi/tcltk')
-rw-r--r-- | Tools/msi/tcltk/tcltk.wxs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/msi/tcltk/tcltk.wxs b/Tools/msi/tcltk/tcltk.wxs index 0b83c5c..eeae8e8 100644 --- a/Tools/msi/tcltk/tcltk.wxs +++ b/Tools/msi/tcltk/tcltk.wxs @@ -49,7 +49,8 @@ Description="!(loc.ShortcutDescription)" Target="[PYTHONW_EXE]" Arguments='"[#Lib_idlelib_idle.pyw]"' - Icon="idle.exe"> + Icon="idle.exe" + WorkingDirectory="InstallDirectory"> <Icon Id="idle.exe" SourceFile="!(bindpath.src)Lib\idlelib\Icons\idle.ico" /> </Shortcut> <Shortcut Id="pydoc.py" @@ -57,7 +58,8 @@ Arguments='-m pydoc -b' Name="!(loc.PyDocShortcutName)" Description="!(loc.PyDocShortcutDescription)" - Icon="idle.exe" /> + Icon="idle.exe" + WorkingDirectory="InstallDirectory" /> </Component> </Feature> </Product> |