From d595eb331461925e96b7ac487ac9bb7dc30b70ee Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Fri, 4 Oct 2013 23:00:48 +0200 Subject: [PATCH] Breaking pad: link SLPlugin.app with the exacption handler Fixes loading of SLPlugin on OS X --- indra/newview/viewer_manifest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 2cdf9a4a5..ed54f9a39 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -552,7 +552,8 @@ class DarwinManifest(ViewerManifest): for libfile in ("libllcommon.dylib", "libapr-1.0.dylib", "libaprutil-1.0.dylib", - "libexpat.1.5.2.dylib"): + "libexpat.1.5.2.dylib", + "libexception_handler.dylib"): target_lib = os.path.join('../../..', libfile) self.run_command("ln -sf %(target)r %(link)r" % {'target': target_lib,