From 0024a7f8e8cab18745a398b180b1e257239a8538 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 5 Sep 2019 23:31:47 +0530 Subject: [PATCH] Remove special casing for libjpeg and libpoppler as install names are now fixed at build time --- bypy/macos/__main__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bypy/macos/__main__.py b/bypy/macos/__main__.py index 9a1e648fc9..f43ed02a0e 100644 --- a/bypy/macos/__main__.py +++ b/bypy/macos/__main__.py @@ -259,10 +259,6 @@ class Freeze(object): 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.startswith('@rpath/libjpeg'): - yield x, x[len('@rpath/'):], is_id - elif x.startswith('@rpath/libpoppler'): - yield x, x[len('@rpath/'):], is_id else: for y in (PREFIX + '/lib/', PREFIX + '/python/Python.framework/'): if x.startswith(y):