From: Ned Deily Date: Sun, 27 Jan 2013 02:08:22 +0000 (-0800) Subject: Issue #14018: fix merge error X-Git-Tag: v2.7.4rc1~164^2~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4511e276d57f2ff1a902e3f5ef8a24103292e7db;p=python Issue #14018: fix merge error --- diff --git a/setup.py b/setup.py index 1791fbe282..6a503c0682 100644 --- a/setup.py +++ b/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/') )