summaryrefslogtreecommitdiff
path: root/command/install.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-03-10 09:53:09 +0100
committerGitHub <noreply@github.com>2020-03-10 09:53:09 +0100
commit6e7341b2cb740741d77e0184db2b9028b1b93773 (patch)
treefe0eca2a9eebd517565ef17daa39deb56f425ed0 /command/install.py
parentc6f749b2b761da2b88cac62d8c6aa29f7276e3a7 (diff)
downloadpython-setuptools-git-6e7341b2cb740741d77e0184db2b9028b1b93773.tar.gz
bpo-1294959: Add sys.platlibdir attribute (GH-18381)
Add --with-platlibdir option to the configure script: name of the platform-specific library directory, stored in the new sys.platlitdir attribute. It is used to build the path of platform-specific dynamic libraries and the path of the standard library. It is equal to "lib" on most platforms. On Fedora and SuSE, it is equal to "lib64" on 64-bit systems. Co-Authored-By: Jan Matějek <jmatejek@suse.com> Co-Authored-By: Matěj Cepl <mcepl@cepl.eu> Co-Authored-By: Charalampos Stratakis <cstratak@redhat.com>
Diffstat (limited to 'command/install.py')
-rw-r--r--command/install.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/command/install.py b/command/install.py
index c625c95b..aaa300ef 100644
--- a/command/install.py
+++ b/command/install.py
@@ -30,14 +30,14 @@ WINDOWS_SCHEME = {
INSTALL_SCHEMES = {
'unix_prefix': {
'purelib': '$base/lib/python$py_version_short/site-packages',
- 'platlib': '$platbase/lib/python$py_version_short/site-packages',
+ 'platlib': '$platbase/$platlibdir/python$py_version_short/site-packages',
'headers': '$base/include/python$py_version_short$abiflags/$dist_name',
'scripts': '$base/bin',
'data' : '$base',
},
'unix_home': {
'purelib': '$base/lib/python',
- 'platlib': '$base/lib/python',
+ 'platlib': '$base/$platlibdir/python',
'headers': '$base/include/python/$dist_name',
'scripts': '$base/bin',
'data' : '$base',
@@ -298,6 +298,7 @@ class install(Command):
'sys_exec_prefix': exec_prefix,
'exec_prefix': exec_prefix,
'abiflags': abiflags,
+ 'platlibdir': sys.platlibdir,
}
if HAS_USER_SITE: