From 7bf452e4bc93a0cd32e862f7ef1e81f873f581f8 Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Fri, 3 Jul 2009 10:57:02 -0700 Subject: [PATCH] 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 --- mac/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, } -- 2.45.2