From e9c67487b2c6c824f95566bf128c5ccdaf34559d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 8 Jul 2016 11:57:01 +0530 Subject: [PATCH] ... --- setup/installer/osx/app/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup/installer/osx/app/main.py b/setup/installer/osx/app/main.py index 6550f012fc..3966114320 100644 --- a/setup/installer/osx/app/main.py +++ b/setup/installer/osx/app/main.py @@ -451,10 +451,11 @@ class Py2App(object): @flush def add_misc_libraries(self): + # Reminder to self to add iconv.dylib in the new freeze code for x in ( 'usb-1.0.0', 'mtp.9', 'ltdl.7', 'chm.0', 'sqlite3.0', 'icudata.53', 'icui18n.53', 'icuio.53', 'icuuc.53', - 'crypto.1.0.0', 'ssl.1.0.0' + 'crypto.1.0.0', 'ssl.1.0.0', # 'iconv.2' ): info('\nAdding', x) x = 'lib%s.dylib'%x @@ -525,7 +526,7 @@ class Py2App(object): ext = os.path.splitext(y)[1] if ext not in ('', '.py', '.so') or \ (not ext and not os.path.isdir(join(root, y))): - ans.append(y) + ans.append(y) return ans if dest is None: