Skip to content

Commit dbe7ec3

Browse files
matejcikstratakis
authored andcommitted
Add NEWS entries and acknowledgement.
1 parent 1e7db24 commit dbe7ec3

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

Doc/whatsnew/3.9.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,15 @@ Build and C API Changes
131131
way to call a callable Python object without any argument.
132132
(Contributed by Victor Stinner in :issue:`37194`.)
133133

134+
* Introduce a ``platsubdir`` sysconfig variable that contains the name of the
135+
platform-specific "lib" directory. This is used to construct paths that do
136+
not differ by prefix, i.e., ``/usr/lib`` vs ``/usr/lib64``. The
137+
``posix_prefix`` install scheme is changed to take this into account.
138+
139+
By default, this is ``basename $libdir``, but can be overriden by
140+
``./configure --with-custom-platsubdir``.
141+
(Contributed by matejcik in :issue:`1294959`.)
142+
134143

135144

136145
Deprecated

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1044,6 +1044,7 @@ Sidney San Martín
10441044
Westley Martínez
10451045
Sébastien Martini
10461046
Roger Masse
1047+
Jan Matějek
10471048
Nick Mathewson
10481049
Simon Mathieu
10491050
Laura Matson
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
On 64bit Linux systems that use ``$prefix/lib64``, this is now the default
2+
install location for the standard library. Python will still be able to
3+
import modules installed in ``$prefix/lib``
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Introduce a ``platsubdir`` sysconfig variable that contains the name of the
2+
platform-specific "lib" directory. This is used to construct paths that do
3+
not differ by prefix, i.e., ``/usr/lib`` vs ``/usr/lib64``. The
4+
``posix_prefix`` install scheme is changed to take this into account.
5+
6+
By default, this is ``basename $libdir``, but can be overriden by
7+
``./configure --with-custom-platsubdir``.

0 commit comments

Comments
 (0)