Browse Source

Issue #14018: fix merge error

pull/2332/head
Ned Deily 13 years ago
parent
commit
4511e276d5
  1. 1
      setup.py

1
setup.py

@ -47,7 +47,6 @@ def is_macosx_sdk_path(path):
"""
Returns True if 'path' can be located in an OSX SDK
"""
return (path.startswith('/usr/') and not path.startswith('/usr/local')) or path.startswith('/System/')
return ( (path.startswith('/usr/') and not path.startswith('/usr/local'))
or path.startswith('/System/')
or path.startswith('/Library/') )

Loading…
Cancel
Save