diff options
author | Mark Palange (Mani) <palange@lindenlab.com> | 2009-09-18 19:29:18 -0700 |
---|---|---|
committer | Mark Palange (Mani) <palange@lindenlab.com> | 2009-09-18 19:29:18 -0700 |
commit | 6f4b9d63f8eb97a7c4717a3160de358000b0981b (patch) | |
tree | f031deda62c7492e073ea1d3f57826aa95d54109 /indra/newview/viewer_manifest.py | |
parent | afb053ebd7c50482088ea2ddf585efe8446969cf (diff) |
Added dependcies to create_app_config_file.
Further Clean up of dll copying merge mess.
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rwxr-xr-x | indra/newview/viewer_manifest.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 6ef905cca7..af3868394b 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -208,9 +208,11 @@ class WindowsManifest(ViewerManifest): self.path('libapr-1.dll') self.path('libaprutil-1.dll') self.path('libapriconv-1.dll') - except RuntimeError: + except RuntimeError, err: + print err.message print "Skipping llcommon.dll (assuming llcommon was linked statically)" - self.end_prefix() + + self.end_prefix() # need to get the kdu dll from the build directory as well try: |