Marc-Andre Lemburg <m...@egenix.com> added the comment: Ronald Oussoren wrote: > > Ronald Oussoren <ronaldousso...@mac.com> added the comment: > > Marc-Andre: what version of Xcode do you use? (the version in the About menu > of Xcode.app).
We have Xcode 2.5 and all updates on the machine. Python 2.6 and older versions compile just fine. The changes you added for the SDK builds in Python 2.7 made the problem appear. What I don't understand is why you are redirecting files under /usr to the SDK virtual root dir. We install all the local builds under /usr/local/ and as result, the build itself also happens under a /usr path. The function definition appears to be a bit coarse in this respect: def is_macosx_sdk_path(path): """ Returns True if 'path' can be located in an OSX SDK """ return path.startswith('/usr/') or path.startswith('/System/') I believe that this function should really only return True if the path in question does exists in the SDK virtual root. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9046> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com