diff options
author | Christian Goetze <cg@lindenlab.com> | 2009-02-04 07:24:19 +0000 |
---|---|---|
committer | Christian Goetze <cg@lindenlab.com> | 2009-02-04 07:24:19 +0000 |
commit | 5edacb93dd41385c0156c212e497f84197120309 (patch) | |
tree | f54d8352889c2aa5954b2b8735b07badb52e6953 | |
parent | 8bea10f3e58a3e9203cf5f6ab837fbaa93e81a9e (diff) |
fix python fussiness
-rwxr-xr-x | indra/newview/viewer_manifest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index b80bcd27e4..bccd77d7fa 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -630,7 +630,8 @@ class Linux_i686Manifest(LinuxManifest): '../llkdu/libllkdu.so', '../../libraries/i686-linux/lib_release_client/libllkdu.so'), dst='bin/libllkdu.so') - pass # keep this one to preserve syntax, open source mangling removes previous lines + # keep this one to preserve syntax, open source mangling removes previous lines + pass except: print "Skipping libllkdu.so - not found" |