mirror of
https://github.com/darlinghq/darling-python.git
synced 2025-02-21 14:40:52 +00:00
12 lines
459 B
Diff
12 lines
459 B
Diff
--- setup.py.orig 2015-06-17 15:13:16.000000000 -0700
|
|
+++ setup.py 2015-06-17 15:13:32.000000000 -0700
|
|
@@ -59,7 +59,7 @@
|
|
"""
|
|
Returns True if 'path' can be located in an OSX SDK
|
|
"""
|
|
- return ( (path.startswith('/usr/') and not path.startswith('/usr/local'))
|
|
+ return ( path.startswith('/usr/')
|
|
or path.startswith('/System/')
|
|
or path.startswith('/Library/') and not path.startswith('/Library/Caches/') )
|
|
|