From 086734456dfdabba21a69e275c0975668e63c704 Mon Sep 17 00:00:00 2001 From: Stephen Fisher Date: Thu, 4 Dec 2014 16:59:43 -0700 Subject: [PATCH] Look for python3 in addition to python in configure script. Change-Id: I77ff22aabdbbbf7376483b53d8795e7fbf0c0433 Reviewed-on: https://code.wireshark.org/review/5627 Reviewed-by: Stephen Fisher --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index af423de4c2..b0ed456f76 100644 --- a/configure.ac +++ b/configure.ac @@ -102,7 +102,7 @@ fi AC_PATH_PROG(PERL, perl) # Check for Python. -AC_PATH_PROG(PYTHON, python) +AC_PATH_PROGS(PYTHON, python, python3) if test ! -z "$PYTHON"; then # # OK, we found Python; is it Python 2.5 or later?