mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix pyexpat not being linked against bundled libexpat
This commit is contained in:
parent
91532c8ea9
commit
433e07fda7
@ -253,7 +253,7 @@ class Freeze:
|
|||||||
@flush
|
@flush
|
||||||
def get_local_dependencies(self, path_to_lib):
|
def get_local_dependencies(self, path_to_lib):
|
||||||
for x, is_id in self.get_dependencies(path_to_lib):
|
for x, is_id in self.get_dependencies(path_to_lib):
|
||||||
if x.startswith('@rpath/Qt'):
|
if x.startswith('@rpath/Qt') or x.startswith('@rpath/libexpat'):
|
||||||
yield x, x[len('@rpath/'):], is_id
|
yield x, x[len('@rpath/'):], is_id
|
||||||
elif x in ('libunrar.dylib', 'libstemmer.0.dylib', 'libstemmer.dylib') and not is_id:
|
elif x in ('libunrar.dylib', 'libstemmer.0.dylib', 'libstemmer.dylib') and not is_id:
|
||||||
yield x, x, is_id
|
yield x, x, is_id
|
||||||
|
Loading…
x
Reference in New Issue
Block a user