diff options
Diffstat (limited to 'linden/indra/newview')
-rwxr-xr-x | linden/indra/newview/viewer_manifest.py | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index ec3b95c..2f509b6 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -1127,11 +1127,17 @@ class Linux_x86_64Manifest(LinuxManifest): | |||
1127 | # self.path("libuuid.so.1") | 1127 | # self.path("libuuid.so.1") |
1128 | # self.end_prefix("lib32") | 1128 | # self.end_prefix("lib32") |
1129 | 1129 | ||
1130 | # Vivox runtimes | 1130 | |
1131 | # if self.prefix(src="vivox-runtime/i686-linux", dst="bin"): | 1131 | # Vivox runtimes and libs |
1132 | # self.path("SLVoice") | 1132 | if self.prefix(src="vivox-runtime/i686-linux", dst="bin"): |
1133 | # self.end_prefix() | 1133 | self.path("SLVoice") |
1134 | # | 1134 | self.end_prefix("bin") |
1135 | |||
1136 | if self.prefix(src="vivox-runtime/i686-linux", dst="lib32"): | ||
1137 | self.path("libalut.so") | ||
1138 | self.path("libortp.so") | ||
1139 | self.path("libvivoxsdk.so") | ||
1140 | self.end_prefix("lib32") | ||
1135 | 1141 | ||
1136 | if __name__ == "__main__": | 1142 | if __name__ == "__main__": |
1137 | main() | 1143 | main() |