diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-07-15 10:10:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-15 10:10:57 (GMT) |
commit | 3026d1381e1e3cb7cd0df28c9a0b5f067148665d (patch) | |
tree | 61de75d3fd44b9337fb05fd3107165fd71363e61 /Lib/sysconfig.py | |
parent | cc1a47c849a206441c9b370b6ca954862a523082 (diff) | |
download | cpython-3026d1381e1e3cb7cd0df28c9a0b5f067148665d.zip cpython-3026d1381e1e3cb7cd0df28c9a0b5f067148665d.tar.gz cpython-3026d1381e1e3cb7cd0df28c9a0b5f067148665d.tar.bz2 |
Fix osx_framework_user include to match distutils (GH-27093) (GH-27159)
(cherry picked from commit 28544609cb2a79d8d7ea5a54714d723669ef2adb)
Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com>
Diffstat (limited to 'Lib/sysconfig.py')
-rw-r--r-- | Lib/sysconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 730d33d..d700880 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}', }, |