diff options
author | Mark Palange (Mani) <palange@lindenlab.com> | 2009-09-15 16:33:00 -0700 |
---|---|---|
committer | Mark Palange (Mani) <palange@lindenlab.com> | 2009-09-15 16:33:00 -0700 |
commit | 8e7ba92eb9e0371385e3de9a76cc11355be8a974 (patch) | |
tree | 3d7a72e487e9dc82c4ccfefd8eecbd846ee6ada3 /indra | |
parent | 9496b1ff45f14b2b1fac66b9b6c6923b6b264ed0 (diff) |
More specific exepction handling to support correct crt_checking failures.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index d8f0e9f5d9..7084fca865 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -195,6 +195,7 @@ class WindowsManifest(ViewerManifest): self.path(src='%s/secondlife-bin.exe' % self.args['configuration'], dst=self.final_exe())
self.enable_crt_check()
+
# Plugin host application
self.path(os.path.join(os.pardir,
'llplugin', 'slplugin', self.args['configuration'], "slplugin.exe"),
@@ -207,14 +208,14 @@ class WindowsManifest(ViewerManifest): self.path('libapr-1.dll')
self.path('libaprutil-1.dll')
self.path('libapriconv-1.dll')
- except:
+ except RuntimeError:
print "Skipping llcommon.dll (assuming llcommon was linked statically)"
self.end_prefix()
# need to get the kdu dll from the build directory as well
try:
self.path('%s/llkdu.dll' % self.args['configuration'], dst='llkdu.dll')
- except:
+ except RuntimeError:
print "Skipping llkdu.dll"
self.disable_crt_check()
|