- Issue #25440: Fix output of python-config --extension-suffix.

This commit is contained in:
doko@ubuntu.com 2015-10-19 14:15:27 +02:00
commit 10ef6bd471
2 changed files with 3 additions and 1 deletions

View file

@ -298,6 +298,8 @@ Windows
Tools/Demos Tools/Demos
----------- -----------
- Issue #25440: Fix output of python-config --extension-suffix.
- Issue #25154: The pyvenv script has been deprecated in favour of - Issue #25154: The pyvenv script has been deprecated in favour of
`python3 -m venv`. `python3 -m venv`.

View file

@ -49,7 +49,7 @@ PY_ENABLE_SHARED="@PY_ENABLE_SHARED@"
LDVERSION="@LDVERSION@" LDVERSION="@LDVERSION@"
LIBDEST=${prefix}/lib/python${VERSION} LIBDEST=${prefix}/lib/python${VERSION}
LIBPL=$(echo "@LIBPL@" | sed "s#$prefix_build#$prefix_real#") LIBPL=$(echo "@LIBPL@" | sed "s#$prefix_build#$prefix_real#")
SO="@SO@" SO="@EXT_SUFFIX@"
PYTHONFRAMEWORK="@PYTHONFRAMEWORK@" PYTHONFRAMEWORK="@PYTHONFRAMEWORK@"
INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}"
PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}"