From 2694a9c967e2c5678ac3fe14dd4a865a7d466be4 Mon Sep 17 00:00:00 2001 From: Beq Date: Wed, 15 Jan 2025 22:30:02 +0000 Subject: [PATCH] Fix linux manifest for webrtc --- indra/newview/viewer_manifest.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 48ff438e4f..2556f034d3 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -2240,15 +2240,13 @@ class LinuxManifest(ViewerManifest): self.path_optional("libjemalloc.so*") - # WebRTC libraries - with self.prefix(src=os.path.join(self.args['build'], os.pardir, - 'sharedlibs', 'lib')): - - for libfile in ( - 'libllwebrtc.so', - ): - - self.path(libfile) + # WebRTC libraries + with self.prefix(src=os.path.join(self.args['build'], os.pardir, + 'sharedlibs', 'lib'), dst='lib'): + for libfile in ( + 'libllwebrtc.so', + ): + self.path(libfile) # Vivox runtimes # Currentelly, the 32-bit ones will work with a 64-bit client.