mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-28 11:06:59 +01:00
Fix linking of libstemmer.dylib
This commit is contained in:
parent
e699841551
commit
fe81410c74
1 changed files with 1 additions and 1 deletions
|
|
@ -255,7 +255,7 @@ def get_local_dependencies(self, path_to_lib):
|
|||
for x, is_id in self.get_dependencies(path_to_lib):
|
||||
if x.startswith('@rpath/Qt'):
|
||||
yield x, x[len('@rpath/'):], is_id
|
||||
elif x == 'libunrar.dylib' and not is_id:
|
||||
elif x in ('libunrar.dylib', 'libstemmer.0.dylib', 'libstemmer.dylib') and not is_id:
|
||||
yield x, x, is_id
|
||||
else:
|
||||
for y in (PREFIX + '/lib/', PREFIX + '/python/Python.framework/'):
|
||||
|
|
|
|||
Loading…
Reference in a new issue