diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-10-28 21:55:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-28 21:55:10 (GMT) |
commit | 2267cb9da4a1fd8bb4962beb893e1f69a37909a7 (patch) | |
tree | bd0a4daaed53e1f558ccb77bbe2e86e55e7d0b68 /Tools | |
parent | a4ee7abd2056c4956df45125fcf451a531247017 (diff) | |
download | cpython-2267cb9da4a1fd8bb4962beb893e1f69a37909a7.zip cpython-2267cb9da4a1fd8bb4962beb893e1f69a37909a7.tar.gz cpython-2267cb9da4a1fd8bb4962beb893e1f69a37909a7.tar.bz2 |
bpo-38589: Fixes HTML Help shortcut when Windows is not installed to C drive (GH-16968)
(cherry picked from commit 0ac6137dd3d1e2c8f9558153ad63021f57e05e73)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/doc/doc.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/doc/doc.wxs b/Tools/msi/doc/doc.wxs index 306fb11..cd1a68c 100644 --- a/Tools/msi/doc/doc.wxs +++ b/Tools/msi/doc/doc.wxs @@ -8,7 +8,7 @@ <PropertyRef Id="REGISTRYKEY" /> <Property Id="HHExe" Value="C:\Windows\hh.exe" /> - <CustomAction Id="SetHHExe" Property="HHCExe" Value='[WindowsFolder]\hh.exe' Execute="immediate" /> + <CustomAction Id="SetHHExe" Property="HHExe" Value='[WindowsFolder]\hh.exe' Execute="immediate" /> <InstallExecuteSequence> <Custom Action="SetHHExe" Before="CostFinalize">1</Custom> </InstallExecuteSequence> |