diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2010-05-26 16:07:16 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2010-05-26 16:07:16 -0400 |
commit | 4dec1430202d1c5578c4e0a6d4107c88f1050ab3 (patch) | |
tree | 7bca11d651cbe0ec839e53caa734a0d875d06d44 /indra/newview/viewer_manifest.py | |
parent | 0bf02ad820abdb35b9cfdfbd1635953e63a767b2 (diff) |
VPLAT-268: Add libexception_handler.dylib to viewer_manifest.py.
Without this, the viewer fails to start because it can't find the new
libexception_handler.dylib.
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 96541088b5..cf66fbc383 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -636,7 +636,9 @@ class DarwinManifest(ViewerManifest): if dylibs["llcommon"]: for libfile in ("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", + ): self.path(os.path.join(libdir, libfile), libfile) #libfmodwrapper.dylib |