diff options
author | Glenn Glazer <coyot@lindenlab.com> | 2017-06-27 07:57:04 -0700 |
---|---|---|
committer | Glenn Glazer <coyot@lindenlab.com> | 2017-06-27 07:57:04 -0700 |
commit | cc85030f7e5d2e218759179a134db0bc60e80615 (patch) | |
tree | 33cd107fb52ea14e2fb4f40814b5f4c601354a0d /indra/newview | |
parent | 263a9e7791f6b6c1ce15dc5c9505bc6b479d8d8b (diff) |
Try pointing icon path to actual viewer exe
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/installers/windows/installer_template.nsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi index d82783a7ec..69e7e06243 100644 --- a/indra/newview/installers/windows/installer_template.nsi +++ b/indra/newview/installers/windows/installer_template.nsi @@ -317,9 +317,9 @@ CreateShortCut "$SMPROGRAMS\$INSTSHORTCUT\Uninstall $INSTSHORTCUT.lnk" \ # Other shortcuts
SetOutPath "$INSTDIR"
CreateShortCut "$DESKTOP\$INSTSHORTCUT.lnk" \
- "$INSTDIR\$INSTEXE" "$SHORTCUT_LANG_PARAM" "$INSTDIR\$INSTEXE"
+ "$INSTDIR\$INSTEXE" "$SHORTCUT_LANG_PARAM" "$INSTDIR\$VIEWER_EXE"
CreateShortCut "$INSTDIR\$INSTSHORTCUT.lnk" \
- "$INSTDIR\$INSTEXE" "$SHORTCUT_LANG_PARAM" "$INSTDIR\$INSTEXE"
+ "$INSTDIR\$INSTEXE" "$SHORTCUT_LANG_PARAM" "$INSTDIR\$VIEWER_EXE"
CreateShortCut "$INSTDIR\Uninstall $INSTSHORTCUT.lnk" \
'"$INSTDIR\uninst.exe"' ''
|