Browse Source

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

pull/40/head
doko@ubuntu.com 10 years ago
parent
commit
2bf91bf46c
  1. 2
      Misc/NEWS
  2. 2
      Misc/python-config.sh.in

2
Misc/NEWS

@ -679,6 +679,8 @@ Documentation
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.

2
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}"

Loading…
Cancel
Save