summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew A. de Laix <alain@lindenlab.com>2010-05-28 14:51:12 -0700
committerAndrew A. de Laix <alain@lindenlab.com>2010-05-28 14:51:12 -0700
commit3a6d903ce02c4d1b06b829ef88bd826e90fd74d0 (patch)
tree6da64c82728f33faed1b9710071bc0a035fd69bf
parent2567519f9f45c0fd9a7d976bc232217e0b19a3a2 (diff)
mac llcommon dependent apps like mac-crash-logger get libexception_handler correctly packaged.
-rwxr-xr-xindra/newview/viewer_manifest.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index cf66fbc383..dac1409aee 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -659,7 +659,9 @@ class DarwinManifest(ViewerManifest):
for libfile in ("libllcommon.dylib",
"libapr-1.0.3.7.dylib",
"libaprutil-1.0.3.8.dylib",
- "libexpat.0.5.0.dylib"):
+ "libexpat.0.5.0.dylib",
+ "libexception_handler.dylib",
+ ):
target_lib = os.path.join('../../..', libfile)
self.run_command("ln -sf %(target)r %(link)r" %
{'target': target_lib,