diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-03-01 12:53:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 12:53:46 (GMT) |
commit | 96d81583be98cec9728636186ea32b662cb091d5 (patch) | |
tree | 4b8ffac5a91b29547833df6a617940c980c783df /Misc | |
parent | 62be763348d16ba90f96667aa0240503261393f0 (diff) | |
download | cpython-96d81583be98cec9728636186ea32b662cb091d5.zip cpython-96d81583be98cec9728636186ea32b662cb091d5.tar.gz cpython-96d81583be98cec9728636186ea32b662cb091d5.tar.bz2 |
bpo-36146: Fix inc_dirs in setup.py on macOS (GH-12098)
Fix setup.py on macOS: only add /usr/include/ffi to include
directories of _ctypes, not for all extensions.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2019-02-28-18-09-01.bpo-36146.IwPJVT.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2019-02-28-18-09-01.bpo-36146.IwPJVT.rst b/Misc/NEWS.d/next/Build/2019-02-28-18-09-01.bpo-36146.IwPJVT.rst new file mode 100644 index 0000000..93c1e1a --- /dev/null +++ b/Misc/NEWS.d/next/Build/2019-02-28-18-09-01.bpo-36146.IwPJVT.rst @@ -0,0 +1,2 @@ +Fix setup.py on macOS: only add ``/usr/include/ffi`` to include +directories of _ctypes, not for all extensions. |