--- pyobjc_setup.py.orig 2014-10-19 22:32:43.000000000 -0700
+++ pyobjc_setup.py 2014-10-19 22:33:00.000000000 -0700
outputs = install_lib.orig.install_lib.get_outputs(self)
- result['PyObjCTest'] = 1
- result[os.path.join(self.install_dir, 'PyObjCTest')] = 1
+ exclusions['PyObjCTest'] = 1
+ exclusions[os.path.join(self.install_dir, 'PyObjCTest')] = 1
for fn in os.listdir('PyObjCTest'):
- result[os.path.join('PyObjCTest', fn)] = 1
- result[os.path.join(self.install_dir, 'PyObjCTest', fn)] = 1
+ exclusions[os.path.join('PyObjCTest', fn)] = 1
+ exclusions[os.path.join(self.install_dir, 'PyObjCTest', fn)] = 1
+ result.update(exclusions)