changeset: 98788:74b6b19e52b4 branch: 3.4 parent: 98779:eb843115e052 user: doko@ubuntu.com date: Mon Oct 19 14:07:57 2015 +0200 files: Misc/NEWS Misc/python-config.sh.in description: - Issue #25440: Fix output of python-config --extension-suffix. diff -r eb843115e052 -r 74b6b19e52b4 Misc/NEWS --- a/Misc/NEWS Sat Oct 17 16:13:10 2015 +0100 +++ b/Misc/NEWS Mon Oct 19 14:07:57 2015 +0200 @@ -679,6 +679,8 @@ Tools/Demos ----------- +- Issue #25440: Fix output of python-config --extension-suffix. + - Issue #23330: h2py now supports arbitrary filenames in #include. - Issue #24031: make patchcheck now supports git checkouts, too. diff -r eb843115e052 -r 74b6b19e52b4 Misc/python-config.sh.in --- a/Misc/python-config.sh.in Sat Oct 17 16:13:10 2015 +0100 +++ b/Misc/python-config.sh.in Mon Oct 19 14:07:57 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}"