27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From 5e82de4d21e26bd76f36c488243255e1f9deea1e 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 077/N] distutils: install layout as posix
|
|
|
|
Co-authored-by: Naveen M K <naveen521kk@gmail.com>
|
|
---
|
|
Lib/distutils/command/install.py | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
|
|
index 01d5331..0421a06 100644
|
|
--- a/Lib/distutils/command/install.py
|
|
+++ b/Lib/distutils/command/install.py
|
|
@@ -72,8 +72,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',
|
|
}
|
|
|