Skip to content
Snippets Groups Projects
Commit 397431a3 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Maybe fix linux

parent 4df6aad0
No related branches found
No related tags found
No related merge requests found
...@@ -1035,7 +1035,7 @@ def construct(self): ...@@ -1035,7 +1035,7 @@ def construct(self):
# libnghttp2.version.dylib. Get all of them. # libnghttp2.version.dylib. Get all of them.
"libnghttp2.*dylib", "libnghttp2.*dylib",
): ):
dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile) dylibs += self.path_optional(os.path.join(relpkgdir, libfile), libfile)
# SLVoice executable # SLVoice executable
with self.prefix(src=os.path.join(pkgdir, 'bin', 'release')): with self.prefix(src=os.path.join(pkgdir, 'bin', 'release')):
...@@ -1053,12 +1053,12 @@ def construct(self): ...@@ -1053,12 +1053,12 @@ def construct(self):
for libfile in ( for libfile in (
"libfmodL.dylib", "libfmodL.dylib",
): ):
dylibs += path_optional(os.path.join(debpkgdir, libfile), libfile) dylibs += self.path_optional(os.path.join(debpkgdir, libfile), libfile)
else: else:
for libfile in ( for libfile in (
"libfmod.dylib", "libfmod.dylib",
): ):
dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile) dylibs += self.path_optional(os.path.join(relpkgdir, libfile), libfile)
# our apps # our apps
executable_path = {} executable_path = {}
...@@ -1502,7 +1502,7 @@ def construct(self): ...@@ -1502,7 +1502,7 @@ def construct(self):
pass pass
try: try:
self.path("libfmod.so*") self.path_optional("libfmod.so*")
pass pass
except: except:
print "Skipping libfmod.so - not found" print "Skipping libfmod.so - not found"
...@@ -1550,7 +1550,7 @@ def construct(self): ...@@ -1550,7 +1550,7 @@ def construct(self):
self.path("libopenal.so*") self.path("libopenal.so*")
try: try:
self.path("libfmod.so*") self.path_optional("libfmod.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