Ticket #43586: setup.py.diff.02

File setup.py.diff.02, 470 bytes (added by drs@…, 10 years ago)

my fix for non-portable py-pyobjc setup.py

Line 
1--- setup.py.orig       2014-05-29 06:40:31.000000000 -0700
2+++ setup.py    2014-05-29 06:41:50.000000000 -0700
3@@ -268,7 +268,7 @@
4 class pyobjc_install_lib (install_lib.install_lib):
5     def get_exclusions(self):
6         result = install_lib.install_lib.get_exclusions(self)
7-        for fn in install_lib._install_lib.get_outputs(self):
8+        for fn in install_lib.orig.install_lib.get_outputs(self):
9             if 'PyObjCTest' in fn:
10                 result[fn] = 1
11