]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: the mac-exe build (using py2app) requires macholib>=1.2.
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 3 Jul 2009 17:57:02 +0000 (10:57 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 3 Jul 2009 17:57:02 +0000 (10:57 -0700)
Here is someone else's description of this problem:
http://rtmpy.org/ticket/7

mac/setup.py

index 7dbd8909871daa20c74e732e6cc86ce51ec2b8af..9f84a0a9bb3f9de463f596684532da359fb59f72 100644 (file)
@@ -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,
 }