diff options
| author | Oz Linden <oz@lindenlab.com> | 2019-12-16 17:09:58 -0500 | 
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2019-12-16 17:09:58 -0500 | 
| commit | 17598f936bb6b099f21fc32aa80b68258cdfd0b9 (patch) | |
| tree | 2497da756b1e3eb579073381b5e928ef261bf868 /indra | |
| parent | 5056ba6daafce402a5db6d2b75dceb20ed452e1d (diff) | |
remove unused legacy crash logger
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index a403760670..861c2120d8 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -1060,10 +1060,10 @@ class DarwinManifest(ViewerManifest):                  # our apps                  executable_path = {} -                for app_bld_dir, app in (("mac_crash_logger", "mac-crash-logger.app"), -                                         # plugin launcher -                                         (os.path.join("llplugin", "slplugin"), "SLPlugin.app"), -                                         ): +                embedded_apps = [ (os.path.join("llplugin", "slplugin"), "SLPlugin.app") ] +                if bugsplat_db: +                    embedded_apps.append(("mac_crash_logger", "mac-crash-logger.app")) +                for app_bld_dir, app in embedded_apps:                      self.path2basename(os.path.join(os.pardir,                                                      app_bld_dir, self.args['configuration']),                                         app) | 
