Skip to content
Snippets Groups Projects
Commit f87e1a43 authored by Oz Linden's avatar Oz Linden
Browse files

remove obsolete llcommon dylib for Mac

parent 5aff3dfa
No related branches found
No related tags found
No related merge requests found
...@@ -1018,15 +1018,19 @@ def path_optional(src, dst): ...@@ -1018,15 +1018,19 @@ def path_optional(src, dst):
# symlink from sub-app/Contents/Resources to the real .dylib. # symlink from sub-app/Contents/Resources to the real .dylib.
# Need to get the llcommon dll from any of the build directories as well. # Need to get the llcommon dll from any of the build directories as well.
libfile_parent = self.get_dst_prefix() libfile_parent = self.get_dst_prefix()
dylibs=[]
for libfile in ( for libfile in (
"libapr-1.0.dylib", "libapr-1.0.dylib",
"libaprutil-1.0.dylib", "libaprutil-1.0.dylib",
"libexpat.1.dylib", "libexpat.1.dylib",
"libexception_handler.dylib", "libexception_handler.dylib",
"libGLOD.dylib", "libGLOD.dylib",
# libnghttp2.dylib is a symlink to
# libnghttp2.major.dylib, which is a symlink to
# libnghttp2.version.dylib. Get all of them.
"libnghttp2.*dylib", "libnghttp2.*dylib",
): ):
dylibs = path_optional(os.path.join(relpkgdir, libfile), libfile) dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile)
# SLVoice and vivox lols, no symlinks needed # SLVoice and vivox lols, no symlinks needed
for libfile in ( for libfile in (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment