From: Tzu-ping Chung Date: Thu, 15 Jul 2021 09:44:04 +0000 (+0800) Subject: Fix osx_framework_user include to match distutils (#27093) X-Git-Tag: v3.11.0a1~674 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=28544609cb2a79d8d7ea5a54714d723669ef2adb;p=thirdparty%2FPython%2Fcpython.git Fix osx_framework_user include to match distutils (#27093) --- diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 730d33dfe1ec..d70088039c98 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py @@ -111,7 +111,7 @@ if _HAS_USER_BASE: 'platstdlib': '{userbase}/lib/python', 'purelib': '{userbase}/lib/python/site-packages', 'platlib': '{userbase}/lib/python/site-packages', - 'include': '{userbase}/include', + 'include': '{userbase}/include/python{py_version_short}', 'scripts': '{userbase}/bin', 'data': '{userbase}', }, diff --git a/Misc/NEWS.d/next/macOS/2021-07-12-15-42-02.bpo-41972.yUjE8j.rst b/Misc/NEWS.d/next/macOS/2021-07-12-15-42-02.bpo-41972.yUjE8j.rst new file mode 100644 index 000000000000..6c70c07669f9 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2021-07-12-15-42-02.bpo-41972.yUjE8j.rst @@ -0,0 +1,2 @@ +The framework build's user header path in sysconfig is changed to add a +'pythonX.Y' component to match distutils's behavior.