aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorChris J Arges <arges@macgyver>2013-01-17 15:25:50 -0600
committerChris J Arges <arges@macgyver>2013-01-17 15:25:50 -0600
commit962ea761d61649b8b19a05d788749fdb03aa3c61 (patch)
tree058228825ce34f423379c342c6ebf54d883890a7 /acinclude.m4
parent3050e349a4d759d11efbeefe040589abfca5c2e2 (diff)
downloadlibayatana-appindicator-962ea761d61649b8b19a05d788749fdb03aa3c61.tar.gz
libayatana-appindicator-962ea761d61649b8b19a05d788749fdb03aa3c61.tar.bz2
libayatana-appindicator-962ea761d61649b8b19a05d788749fdb03aa3c61.zip
acinclude.m4: Fix python multi-arch include issues.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 3e98bd3..8c75106 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -230,7 +230,7 @@ AC_MSG_CHECKING(for headers required to compile python extensions)
dnl deduce PYTHON_INCLUDES
py_prefix=`$PYTHON -c "import sys; print sys.prefix"`
py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"`
-PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}"
+PYTHON_INCLUDES="`$PYTHON-config --includes`"
if test "$py_prefix" != "$py_exec_prefix"; then
PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}"
fi