diff options
author | Callum Prentice <callum@gmail.com> | 2017-03-30 17:36:33 -0700 |
---|---|---|
committer | Callum Prentice <callum@gmail.com> | 2017-03-30 17:36:33 -0700 |
commit | 510e101627970c62a479ec01d26a26124c9c7991 (patch) | |
tree | d151fb0797bb611cef3a97ef24a3d9fcd2f0cdab /indra/newview/viewer_manifest.py | |
parent | cb07ca3510b74ba04b3346cb675fed1845b84dab (diff) |
fix for MAINT-6998 64bit viewer installs to Program Files (x86) by default. - this change also fixes MAINT-5365 Windows viewer uninstall icon is system default not SL logo
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 3a8cd0c626..bce94263c4 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -648,7 +648,7 @@ class WindowsManifest(ViewerManifest): "%%SOURCE%%":self.get_src_prefix(), "%%INST_VARS%%":inst_vars_template % substitution_strings, "%%INSTALL_FILES%%":self.nsi_file_commands(True), - "%%$PROGRAMFILES%%":program_files, + "%%PROGRAMFILES%%":program_files, "%%ENGAGEREGISTRY%%":engage_registry, "%%DELETE_FILES%%":self.nsi_file_commands(False)}) |