From e8058322725ba050014777ee2484f7e833ab1e3a Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Wed, 28 Jan 2015 16:10:12 +0100 Subject: Remove strict requirements of python2 * fix hashbangs * remove strict requirements of python2 in build system Resolves: https://fedorahosted.org/sssd/ticket/2017 Reviewed-by: Petr Viktorin --- src/external/python.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/external') diff --git a/src/external/python.m4 b/src/external/python.m4 index 25fc7f397..a1bd87a0e 100644 --- a/src/external/python.m4 +++ b/src/external/python.m4 @@ -9,7 +9,7 @@ AC_DEFUN([AM_PYTHON_CONFIG], dnl We need to check for python build flags using distutils.sysconfig dnl We cannot use python-config, as it was not available on older dnl versions of python - AC_PATH_PROG(PYTHON, python2) + AC_PATH_PROG(PYTHON, python) AC_MSG_CHECKING([for working python]) if test -x "$PYTHON"; then PYTHON_CFLAGS="`$PYTHON -c \"from distutils import sysconfig; \ -- cgit