diff options
author | Callum Prentice <callum@gmail.com> | 2017-03-10 15:11:44 -0800 |
---|---|---|
committer | Callum Prentice <callum@gmail.com> | 2017-03-10 15:11:44 -0800 |
commit | 10bcd510b59fe73bf9e948de3dce9cea6d7d8b93 (patch) | |
tree | 90cc170b4ea3e7ef6e071562e6ce767fb6cbbd24 /indra/newview/installers | |
parent | 39ebb2d093e0709b9b2bb118f04d5b382076fd98 (diff) |
MAINT-6998 [Project Alex Ivy] 64bit viewer installs to Program Files (x86) by default.
Diffstat (limited to 'indra/newview/installers')
-rw-r--r-- | indra/newview/installers/windows/installer_template.nsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi index 89317f2793..42f8e0ce1f 100644 --- a/indra/newview/installers/windows/installer_template.nsi +++ b/indra/newview/installers/windows/installer_template.nsi @@ -90,7 +90,7 @@ InstProgressFlags smooth colored # New colored smooth look SetOverwrite on # Overwrite files by default
AutoCloseWindow true # After all files install, close window
-InstallDir "$PROGRAMFILES\${INSTNAME}"
+InstallDir "%%$PROGRAMFILES%%\${INSTNAME}"
InstallDirRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\${INSTNAME}" ""
UninstallText $(UninstallTextMsg)
DirText $(DirectoryChooseTitle) $(DirectoryChooseSetup)
|