diff options
| author | Oz Linden <oz@lindenlab.com> | 2018-09-06 14:32:15 -0400 | 
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2018-09-06 14:32:15 -0400 | 
| commit | 10f2101515fe8ba230848cce41faaf7613c9b6d8 (patch) | |
| tree | 1ee0bd3c9e2e8b9f29250b517f070d8ff60f6129 /indra/newview | |
| parent | 8725d8e34a0f843860aea1678796c659f9b5f1ef (diff) | |
make the .app name channel sensitive to match cmake
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index aa03780e19..464f7aa3e9 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -910,7 +910,8 @@ class DarwinManifest(ViewerManifest):          # applications for the VMP and for the actual viewer, respectively.          # These names, without the .app suffix, determine the flyover text for          # their corresponding Dock icons. -        toplevel_app, toplevel_icon = "Second Life.app",          "secondlife.icns" +        toplevel_app = self.channel()+".app"  +        toplevel_icon = "secondlife.icns"          launcher_app, launcher_icon = "Second Life Launcher.app", "secondlife.icns"          viewer_app,   viewer_icon   = "Second Life Viewer.app",   "secondlife.icns" | 
