mirror of https://github.com/python/cpython
Issue #14018: fix merge error
This commit is contained in:
parent
059972535f
commit
8916b853b9
1
setup.py
1
setup.py
|
@ -59,7 +59,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…
Reference in New Issue