From ac79135b94b1cd2c3fc4818bdfbe8ec63a6166b6 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 30 Oct 2007 00:20:18 -0500 Subject: Pick best python program available for 'make check' Use an autoconf macro to find us a python executable, preferring python2.5 if we can find it. From there, fall back to python2.4 and then python. Signed-off-by: Dan McGee --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 4feb9dd1..ece29985 100644 --- a/configure.ac +++ b/configure.ac @@ -125,7 +125,8 @@ AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET AC_PROG_RANLIB -AM_PROG_LIBTOOL +AC_PROG_LIBTOOL +AC_CHECK_PROGS([PYTHON], [python2.5 python2.4 python], [false]) # find installed gettext AM_GNU_GETTEXT([external]) -- cgit v1.2.3-24-g4f1b