diff options
Diffstat (limited to 'linden/indra/newview/viewer_manifest.py')
-rwxr-xr-x | linden/indra/newview/viewer_manifest.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index bdbc5ff..0c1f89a 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -991,10 +991,16 @@ class Linux_i686Manifest(LinuxManifest): | |||
991 | 991 | ||
992 | self.end_prefix("lib") | 992 | self.end_prefix("lib") |
993 | 993 | ||
994 | # Vivox runtimes | 994 | # Vivox runtimes and libs |
995 | # if self.prefix(src="vivox-runtime/i686-linux", dst="bin"): | 995 | if self.prefix(src="vivox-runtime/i686-linux", dst="bin"): |
996 | # self.path("SLVoice") | 996 | self.path("SLVoice") |
997 | # self.end_prefix() | 997 | self.end_prefix("bin") |
998 | |||
999 | if self.prefix(src="vivox-runtime/i686-linux", dst="lib"): | ||
1000 | self.path("libalut.so") | ||
1001 | self.path("libortp.so") | ||
1002 | self.path("libvivoxsdk.so") | ||
1003 | self.end_prefix("lib") | ||
998 | 1004 | ||
999 | 1005 | ||
1000 | class Linux_x86_64Manifest(LinuxManifest): | 1006 | class Linux_x86_64Manifest(LinuxManifest): |