diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2017-10-09 16:46:22 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2017-10-09 16:46:22 -0400 |
commit | 9e95301be5e0466f4dbfec40abffadeb9f14e9fc (patch) | |
tree | cd9a941f1848c6ee8e451e9e21b2811762474167 /indra/newview/viewer_manifest.py | |
parent | f7fb6b4a0eed499439f4c41bdce4de3efc94e906 (diff) |
MAINT-7809: Add secondlife.ico to viewer's vmp_icons install dir.
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index d021e5b9f3..0e6c98f230 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -368,6 +368,9 @@ class WindowsManifest(ViewerManifest): #IUM is not normally executed directly, just imported. No exe needed. self.path2basename(vmpdir,"InstallerUserMessage.py") + with self.prefix(src=self.icon_path(), dst="vmp_icons"): + self.path("secondlife.ico") + #VMP Tkinter icons with self.prefix("vmp_icons"): self.path("*.png") @@ -839,6 +842,9 @@ class DarwinManifest(ViewerManifest): with self.prefix(src=icon_path, dst="") : self.path("secondlife.icns") + with self.prefix(src=icon_path, dst="vmp_icons"): + self.path("secondlife.ico") + #VMP Tkinter icons with self.prefix("vmp_icons"): self.path("*.png") |