From 20780161185d5029b0011e55df3cff5f4917a9c2 Mon Sep 17 00:00:00 2001 From: Richard Mark Date: Wed, 23 Jul 2014 21:11:57 -0700 Subject: [PATCH] Use the discovered version PYTHON for module checks --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 7027112..666436e 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ AM_PATH_PYTHON([2.6]) py_module=libxml2 AC_MSG_CHECKING(for python module $py_module) -echo "import $py_module" | python - &>/dev/null +echo "import $py_module" | $PYTHON - &>/dev/null if test $? -ne 0; then AC_MSG_RESULT(not found) AC_MSG_ERROR(Python module $py_module is needed to run this package) -- 1.7.1