From: Jeffrey Altman Date: Tue, 27 Sep 2005 05:38:38 +0000 (+0000) Subject: STABLE14-windows-nsis-20050926 X-Git-Tag: openafs-stable-1_4_0-rc5 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=290c6483913d4dff77fde08fda179929a5cf7b50;p=packages%2Fo%2Fopenafs.git STABLE14-windows-nsis-20050926 Install a Documentation Shortcut as part of the client install. It is independent of the Supplemental Documentation which is not required for the release notes. (cherry picked from commit 69a5db9fda91d5fc7becb85980f2f0595ebe7ed5) --- diff --git a/src/WINNT/install/NSIS/OpenAFS.nsi b/src/WINNT/install/NSIS/OpenAFS.nsi index 7f4ec9c31..fa6d7586f 100644 --- a/src/WINNT/install/NSIS/OpenAFS.nsi +++ b/src/WINNT/install/NSIS/OpenAFS.nsi @@ -1026,11 +1026,6 @@ DoneLanguage: WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION} WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL} - ; Write start menu shortcut - SetOutPath "$SMPROGRAMS\OpenAFS" - CreateShortCut "$SMPROGRAMS\OpenAFS\Documentation.lnk" "$INSTDIR\Documentation\html\index.htm" - - WriteUninstaller "$INSTDIR\Uninstall.exe" WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayIcon" "$INSTDIR\Uninstall.exe,0" CreateShortCut "$SMPROGRAMS\OpenAFS\Uninstall OpenAFS.lnk" "$INSTDIR\Uninstall.exe" @@ -3261,6 +3256,12 @@ DoTradChinese: goto done done: + + ; Write start menu shortcut + SetOutPath "$SMPROGRAMS\OpenAFS" + CreateShortCut "$SMPROGRAMS\OpenAFS\Documentation.lnk" "$INSTDIR\Documentation\html\index.htm" + + FunctionEnd