changeset: 98790:dd1abadb1325 parent: 98787:f020a27b5391 parent: 98789:40aba0cda7b6 user: doko@ubuntu.com date: Mon Oct 19 14:15:27 2015 +0200 files: Misc/NEWS description: - Issue #25440: Fix output of python-config --extension-suffix. diff -r f020a27b5391 -r dd1abadb1325 Misc/NEWS --- a/Misc/NEWS Mon Oct 19 00:56:59 2015 +0300 +++ b/Misc/NEWS Mon Oct 19 14:15:27 2015 +0200 @@ -298,6 +298,8 @@ Tools/Demos ----------- +- Issue #25440: Fix output of python-config --extension-suffix. + - Issue #25154: The pyvenv script has been deprecated in favour of `python3 -m venv`. diff -r f020a27b5391 -r dd1abadb1325 Misc/python-config.sh.in --- a/Misc/python-config.sh.in Mon Oct 19 00:56:59 2015 +0300 +++ b/Misc/python-config.sh.in Mon Oct 19 14:15:27 2015 +0200 @@ -49,7 +49,7 @@ LDVERSION="@LDVERSION@" LIBDEST=${prefix}/lib/python${VERSION} LIBPL=$(echo "@LIBPL@" | sed "s#$prefix_build#$prefix_real#") -SO="@SO@" +SO="@EXT_SUFFIX@" PYTHONFRAMEWORK="@PYTHONFRAMEWORK@" INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}"