Stop using `which` for finding python interpreter
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 30 Jul 2016 20:30:20 +0000 (22:30 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 30 Jul 2016 20:39:55 +0000 (22:39 +0200)
Which is not available in minimal build environments (see #1825 for an
example) so replace it with AC_PATH_PROG.

configure.ac

index 4aa3af7..a1c3303 100644 (file)
@@ -3883,14 +3883,12 @@ PATH="$with_python_path"
 
 if test "x$with_python" = "xyes" && test "x$with_python_prog" = "x"
 then
-       AC_MSG_CHECKING([for python])
-       with_python_prog="`which python 2>/dev/null`"
-       if test "x$with_python_prog" = "x"
+       AC_PATH_PROG([PYTHON], [python])
+       if test "x$PYTHON" = "x"
        then
-               AC_MSG_RESULT([not found])
                with_python="no (interpreter not found)"
        else
-               AC_MSG_RESULT([$with_python_prog])
+               with_python_prog="$PYTHON"
        fi
 fi