2
0
mirror of https://github.com/gentoo-mirror/gentoo.git synced 2026-01-28 00:00:21 +03:00
Files
gentoo/dev-python/pythonmagick/files/pythonmagick-0.9.2-fix_detection_of_python_includedir.patch
Repository QA checks a637bd65b7 2015-06-19 16:35:30 UTC
2015-06-19 12:38:33 -04:00

12 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