diff options
author | Merov Linden <merov@lindenlab.com> | 2010-08-26 20:30:10 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2010-08-26 20:30:10 -0700 |
commit | 63053aad8fc15a63bbd35c38de7bdc103b7fb4ab (patch) | |
tree | 9e05c387b4c73f66cd58e07a8ff7970ab1cab3fd | |
parent | 7869a17f76e23ced8f49e3ae13b653278e3de4b9 (diff) |
VWR-20946 : fix the viewer manifest script to take the new kdu lib name into account
-rw-r--r-- | indra/newview/viewer_manifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index e963bcc9f7..4058933d9f 100644 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -930,7 +930,7 @@ class Linux_i686Manifest(LinuxManifest): self.path("libopenal.so", "libopenal.so.1") self.path("libopenal.so", "libvivoxoal.so.1") # vivox's sdk expects this soname try: - self.path("libkdu_v42R.so", "libkdu.so") + self.path("libkdu.so") pass except: print "Skipping libkdu_v42R.so - not found" |