]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Revert "bpo-45035: Make sysconfig posix_home depend on platlibdir (GH-28011)" (GH...
authorPablo Galindo Salgado <Pablogsal@gmail.com>
Tue, 7 Sep 2021 11:46:25 +0000 (12:46 +0100)
committerGitHub <noreply@github.com>
Tue, 7 Sep 2021 11:46:25 +0000 (12:46 +0100)
This reverts commit 4f88161f07538dfb24a43189fd59bf966cb40817.

Lib/sysconfig.py
Misc/NEWS.d/next/Library/2021-08-28-14-52-27.bpo-45035.O9mNam.rst [deleted file]

index 86a9c4661034b451bce05f3a73852d07e33edb6a..95b48f6429d5f81ad19a1cf6102d85e976117b0e 100644 (file)
@@ -37,10 +37,10 @@ _INSTALL_SCHEMES = {
         'data': '{base}',
         },
     'posix_home': {
-        'stdlib': '{installed_base}/{platlibdir}/python',
-        'platstdlib': '{base}/{platlibdir}/python',
+        'stdlib': '{installed_base}/lib/python',
+        'platstdlib': '{base}/lib/python',
         'purelib': '{base}/lib/python',
-        'platlib': '{base}/{platlibdir}/python',
+        'platlib': '{base}/lib/python',
         'include': '{installed_base}/include/python',
         'platinclude': '{installed_base}/include/python',
         'scripts': '{base}/bin',
diff --git a/Misc/NEWS.d/next/Library/2021-08-28-14-52-27.bpo-45035.O9mNam.rst b/Misc/NEWS.d/next/Library/2021-08-28-14-52-27.bpo-45035.O9mNam.rst
deleted file mode 100644 (file)
index b26c51a..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Fix the ``posix_home`` scheme in :mod:`sysconfig` to depend on
-:data:`sys.platlibdir`.