[issue37285] Python 2.7 setup.py incorrectly double-joins SDKROOT

2019-10-19 Thread Ned Deily
Ned Deily added the comment: Thanks for the report and the PR (and sorry for the delay in responding). There were several problems with building on macOS without installed header files, which is no longer supported in the most recent Xcode / Command Line Tools releases, as well as a problem

[issue37285] Python 2.7 setup.py incorrectly double-joins SDKROOT

2019-06-14 Thread Ned Deily
Change by Ned Deily : -- assignee: -> ned.deily nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue37285] Python 2.7 setup.py incorrectly double-joins SDKROOT

2019-06-14 Thread Misty De Méo
Change by Misty De Méo : -- keywords: +patch pull_requests: +13949 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14095 ___ Python tracker ___

[issue37285] Python 2.7 setup.py incorrectly double-joins SDKROOT

2019-06-14 Thread Misty De Méo
New submission from Misty De Méo : Python 2.7's setup.py has incorrect behaviour when adding the SDKROOT to the beginning of the include path while searching. When searching paths, find_file first checks is_macosx_sdk_path to see if it needs to add the sdk_root: https://github.com/python/cpy