summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2020-06-11 16:38:59 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2022-02-23 10:45:30 +0200
commitb21c17eee973dc06c1392dd45dbc19c1ce394852 (patch)
tree334cade6fbb25c63066ad92e7df8c105b9f6f764 /indra
parent2f78338aeb3d0297813bc9c9c7a9d75a2055000d (diff)
Debug Fmod with logging #2
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/viewer_manifest.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 4b4958e1c2..a7392f701f 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -515,7 +515,7 @@ class WindowsManifest(ViewerManifest):
if(self.args['configuration'].lower() == 'debug'):
self.path("fmodL.dll")
else:
- self.path("fmod.dll")
+ self.path("fmodL.dll")
if self.args['openal'] == 'ON':
# Get openal dll
@@ -1050,7 +1050,7 @@ class DarwinManifest(ViewerManifest):
dylibs += path_optional(os.path.join(debpkgdir, libfile), libfile)
else:
for libfile in (
- "libfmod.dylib",
+ "libfmodL.dylib",
):
dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile)
@@ -1512,9 +1512,9 @@ class Linux_i686_Manifest(LinuxManifest):
if self.args['fmodstudio'] == 'ON':
try:
- self.path("libfmod.so.11.7")
- self.path("libfmod.so.11")
- self.path("libfmod.so")
+ self.path("libfmodL.so.11.7")
+ self.path("libfmodL.so.11")
+ self.path("libfmodL.so")
pass
except:
print "Skipping libfmod.so - not found"