diff options
author | Steve Dower <steve.dower@python.org> | 2019-10-28 21:34:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-28 21:34:25 (GMT) |
commit | 0ac6137dd3d1e2c8f9558153ad63021f57e05e73 (patch) | |
tree | 3154ead9667e50710284df19f5c7a4af28d4eb82 /Tools | |
parent | 794616f837c254c68d8384ab48fb78123a3c8a8b (diff) | |
download | cpython-0ac6137dd3d1e2c8f9558153ad63021f57e05e73.zip cpython-0ac6137dd3d1e2c8f9558153ad63021f57e05e73.tar.gz cpython-0ac6137dd3d1e2c8f9558153ad63021f57e05e73.tar.bz2 |
bpo-38589: Fixes HTML Help shortcut when Windows is not installed to C drive (GH-16968)
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> |