aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2013-05-01 21:50:44 +0000
committerJörg Mayer <jmayer@loplof.de>2013-05-01 21:50:44 +0000
commit4c444efdf1815c8faa5ddaf9ccf5581f8839ddad (patch)
tree0081921eb8697e6f27f2a6450e24dc267e5a4bbe /configure.ac
parent1fe16c1d6a73e75e94bd56ae4e2e16a418304ad0 (diff)
downloadwireshark-4c444efdf1815c8faa5ddaf9ccf5581f8839ddad.tar.gz
wireshark-4c444efdf1815c8faa5ddaf9ccf5581f8839ddad.tar.bz2
wireshark-4c444efdf1815c8faa5ddaf9ccf5581f8839ddad.zip
Make the python scripts work on systems where python is a link
to python3: explicitely call the python2 binary. svn path=/trunk/; revision=49121
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 720b3f1c4c..f38afe8687 100644
--- a/configure.ac
+++ b/configure.ac
@@ -404,7 +404,7 @@ AC_PATH_PROG(LYNX, lynx)
AC_CHECK_PROG(HAVE_LYNX, lynx, "yes", "no")
AM_CONDITIONAL(HAVE_LYNX, test x$HAVE_LYNX = xyes)
-AC_PATH_PROG(PYTHON, python)
+AC_PATH_PROG(PYTHON, python2)
# Check for w3m (html -> text)
AC_PATH_PROG(W3M, w3m)