Issue #14018: fix merge error

This commit is contained in:
Ned Deily 2013-01-26 18:08:22 -08:00
parent c19d7b6556
commit 4511e276d5
1 changed files with 0 additions and 1 deletions

View File

@ -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/') )