mirror of
https://github.com/mpv-player/mpv
synced 2025-02-06 23:21:54 +00:00
osxbundle: don't try to package Python
This fixes usage when the bundle is used on the same machine that Python/Cython was compiled on. It doesn't fix the harder problem of packaging a full Python installation in the mpv app bundle (and I'm not sure we actually want that). Fixes #1549
This commit is contained in:
parent
1ba03f6813
commit
568a0157ff
@ -19,6 +19,7 @@ def is_user_lib(objfile, libname):
|
||||
not "libSystem." in libname and \
|
||||
not "libc." in libname and \
|
||||
not "libgcc." in libname and \
|
||||
not os.path.basename(libname) == 'Python' and \
|
||||
not os.path.basename(objfile) in libname
|
||||
|
||||
def otool(objfile):
|
||||
|
Loading…
Reference in New Issue
Block a user