diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2015-10-19 14:07:57 +0200 |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2015-10-19 14:07:57 +0200 |
commit | 2bf91bf46cf5bf9913a126092a8d08bcd7a6157c (patch) | |
tree | c62d0d8e9de406b04c75b81257f772ba0249da34 /Misc/python-config.sh.in | |
parent | 277640af0f528f71c9882a30c9325cd02b10a31a (diff) | |
download | cpython-git-2bf91bf46cf5bf9913a126092a8d08bcd7a6157c.tar.gz |
- Issue #25440: Fix output of python-config --extension-suffix.
Diffstat (limited to 'Misc/python-config.sh.in')
-rw-r--r-- | Misc/python-config.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/python-config.sh.in b/Misc/python-config.sh.in index 64c81e5f74..30c6927871 100644 --- a/Misc/python-config.sh.in +++ b/Misc/python-config.sh.in @@ -49,7 +49,7 @@ PY_ENABLE_SHARED="@PY_ENABLE_SHARED@" 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}" |