Skip to content
Snippets Groups Projects
Commit b21c17ee authored by Andrey Kleshchev's avatar Andrey Kleshchev
Browse files

Debug Fmod with logging #2

parent 2f78338a
Branches
Tags
1 merge request!83Merge Linden 6.6.7
...@@ -515,7 +515,7 @@ def construct(self): ...@@ -515,7 +515,7 @@ def construct(self):
if(self.args['configuration'].lower() == 'debug'): if(self.args['configuration'].lower() == 'debug'):
self.path("fmodL.dll") self.path("fmodL.dll")
else: else:
self.path("fmod.dll") self.path("fmodL.dll")
if self.args['openal'] == 'ON': if self.args['openal'] == 'ON':
# Get openal dll # Get openal dll
...@@ -1050,7 +1050,7 @@ def path_optional(src, dst): ...@@ -1050,7 +1050,7 @@ def path_optional(src, dst):
dylibs += path_optional(os.path.join(debpkgdir, libfile), libfile) dylibs += path_optional(os.path.join(debpkgdir, libfile), libfile)
else: else:
for libfile in ( for libfile in (
"libfmod.dylib", "libfmodL.dylib",
): ):
dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile) dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile)
...@@ -1512,9 +1512,9 @@ def construct(self): ...@@ -1512,9 +1512,9 @@ def construct(self):
if self.args['fmodstudio'] == 'ON': if self.args['fmodstudio'] == 'ON':
try: try:
self.path("libfmod.so.11.7") self.path("libfmodL.so.11.7")
self.path("libfmod.so.11") self.path("libfmodL.so.11")
self.path("libfmod.so") self.path("libfmodL.so")
pass pass
except: except:
print "Skipping libfmod.so - not found" print "Skipping libfmod.so - not found"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment