diff options
author | kali <kali@leap.se> | 2013-01-11 09:16:49 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2013-01-11 09:17:54 +0900 |
commit | ade0eded09176fd687d1ee30724468c048d15065 (patch) | |
tree | a6a3c196dd8a41c6360d47f38af3820c4820a68b /pkg/osx/leap-client.spec | |
parent | f2660941cf01a25a36058ab25cae45cea2c062d3 (diff) |
fix for missing cacert bundle
frozen app cannot find requests cacert bundle.
added to Resources to get us going.
Diffstat (limited to 'pkg/osx/leap-client.spec')
-rw-r--r-- | pkg/osx/leap-client.spec | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/osx/leap-client.spec b/pkg/osx/leap-client.spec index 4a34bb7c..04f45253 100644 --- a/pkg/osx/leap-client.spec +++ b/pkg/osx/leap-client.spec @@ -15,7 +15,10 @@ exe = EXE(pyz, upx=True, console=False) coll = COLLECT(exe, - a.binaries, + a.binaries + + # this will easitly break if we setup the venv + # somewhere else. FIXME + [('cacert.pem', '../../../../lib/python2.6/site-packages/requests/cacert.pem', 'DATA')], a.zipfiles, a.datas, strip=True, |