slackbuilds_ponce/python/python-magick/patches/pythonmagick-0.9.2-fix_detection_of_python_includedir.patch
Matteo Bernardini 4e9f1ae090 python/python-magick: Fixed the build system.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
2013-11-06 00:56:47 -06:00

11 lines
645 B
Diff

--- m4/ax_python.m4
+++ m4/ax_python.m4
@@ -65,7 +65,7 @@
[python_version=`$ax_python_bin -c 'import sys; print(".".join(str(x) for x in sys.version_info[:2]))'`]
AC_CHECK_LIB(python$python_version, main, ax_python_lib=python$python_version, ax_python_lib=no)
AC_CHECK_HEADER([python$python_version/Python.h],
- [[ax_python_header=`locate python$python_version/Python.h | sed -e s,/Python.h,,`]],
+ [[ax_python_header=`$ax_python_bin -c 'import sys; print(sys.prefix + "/include/python%s.%s" % sys.version_info[:2])'`]],
ax_python_header=no)
if test $ax_python_lib != no; then
if test $ax_python_header != no; then