| From d2e564612e1c443c7e8b523e8d7e9ac34e522fc4 Mon Sep 17 00:00:00 2001 |
| From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9?= |
| <alexey.pawlow@gmail.com> |
| Date: Thu, 17 Jun 2021 18:51:59 +0530 |
| Subject: [PATCH 054/N] mingw install layout as posix |
| MIME-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| Co-authored-by: Алексей <alexey.pawlow@gmail.com> |
| --- |
| Lib/distutils/command/install.py | 12 ++++++------ |
| 1 file changed, 6 insertions(+), 6 deletions(-) |
| |
| diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py |
| index eea417e..f8c42c7 100644 |
| --- a/Lib/distutils/command/install.py |
| +++ b/Lib/distutils/command/install.py |
| @@ -20,10 +20,10 @@ from site import USER_SITE |
| HAS_USER_SITE = True |
| |
| WINDOWS_SCHEME = { |
| - 'purelib': '$base/Lib/site-packages', |
| - 'platlib': '$base/Lib/site-packages', |
| - 'headers': '$base/Include/$dist_name', |
| - 'scripts': '$base/Scripts', |
| + 'purelib': '$base/lib/python$py_version_short/site-packages', |
| + 'platlib': '$base/lib/python$py_version_short/site-packages', |
| + 'headers': '$base/include/python$py_version_short$abiflags/$dist_name', |
| + 'scripts': '$base/bin', |
| 'data' : '$base', |
| } |
| |
| @@ -50,8 +50,8 @@ if HAS_USER_SITE: |
| INSTALL_SCHEMES['nt_user'] = { |
| 'purelib': '$usersite', |
| 'platlib': '$usersite', |
| - 'headers': '$userbase/Python$py_version_nodot/Include/$dist_name', |
| - 'scripts': '$userbase/Python$py_version_nodot/Scripts', |
| + 'headers': '$userbase/include/python$py_version_short$abiflags/$dist_name', |
| + 'scripts': '$userbase/bin', |
| 'data' : '$userbase', |
| } |
| |
| -- |
| 2.32.0 |
| |