diff options
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") |