From: Zooko O'Whielacronx Date: Fri, 3 Jul 2009 17:57:02 +0000 (-0700) Subject: setup: the mac-exe build (using py2app) requires macholib>=1.2. X-Git-Tag: trac-4000~37 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=7bf452e4bc93a0cd32e862f7ef1e81f873f581f8;p=tahoe-lafs%2Ftahoe-lafs.git setup: the mac-exe build (using py2app) requires macholib>=1.2. Here is someone else's description of this problem: http://rtmpy.org/ticket/7 --- diff --git a/mac/setup.py b/mac/setup.py index 7dbd8909..9f84a0a9 100644 --- a/mac/setup.py +++ b/mac/setup.py @@ -45,7 +45,7 @@ setup_args = { 'app': [ 'allmydata_tahoe.py' ], 'options': { 'py2app': py2app_options }, 'data_files': data_files, - 'setup_requires': [ 'py2app' ], + 'setup_requires': [ 'py2app', 'macholib>=1.2' ], 'packages': packages, }