summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-04-20 15:26:21 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2014-04-21 10:45:30 +0200
commit5ae9058f382802effc2031bc2a2ffe44673e7fbf (patch)
treeb2d6c00bbf78f481b8bafe0008dd81700196e423 /configure.ac
parent9bba0e7d525dc8829cf3cfda1d0988fe26524d88 (diff)
downloadptxdist-5ae9058f382802effc2031bc2a2ffe44673e7fbf.tar.gz
ptxdist-5ae9058f382802effc2031bc2a2ffe44673e7fbf.tar.xz
configure.ac: check for python2 binary as well
Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8cae510bc..3c4f9568c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -301,7 +301,7 @@ AC_ARG_WITH(python, AS_HELP_STRING([--with-python],[name of the python executabl
AC_SUBST(PYTHON)
AC_MSG_NOTICE([Using python executable $PYTHON])
],[
- AC_PATH_PROGS(PYTHON, python2.7 python2.6 python)
+ AC_PATH_PROGS(PYTHON, python2 python2.7 python2.6 python)
AC_SUBST(PYTHON)
])