From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-ee0-x22a.google.com ([2a00:1450:4013:c00::22a]) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1WcBRy-0003WR-NV for ptxdist@pengutronix.de; Mon, 21 Apr 2014 12:27:47 +0200 Received: by mail-ee0-f42.google.com with SMTP id d17so3566667eek.29 for ; Mon, 21 Apr 2014 03:27:41 -0700 (PDT) From: Alexander Aring Date: Mon, 21 Apr 2014 12:27:31 +0200 Message-Id: <1398076053-32605-3-git-send-email-alex.aring@gmail.com> In-Reply-To: <1398076053-32605-1-git-send-email-alex.aring@gmail.com> References: <1398076053-32605-1-git-send-email-alex.aring@gmail.com> Subject: [ptxdist] [PATCH v5 2/4] configure.ac: add check for python 2.x version Reply-To: ptxdist@pengutronix.de List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: ptxdist-bounces@pengutronix.de Errors-To: ptxdist-bounces@pengutronix.de To: ptxdist@pengutronix.de Cc: Alexander Aring Signed-off-by: Alexander Aring --- configure.ac | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/configure.ac b/configure.ac index 2a97944..8cae510 100644 --- a/configure.ac +++ b/configure.ac @@ -304,6 +304,18 @@ AC_ARG_WITH(python, AS_HELP_STRING([--with-python],[name of the python executabl AC_PATH_PROGS(PYTHON, python2.7 python2.6 python) AC_SUBST(PYTHON) ]) + +dnl +dnl Check for Python 2.x +dnl +AC_MSG_CHECKING([Python version]) +PYTHON_VERSION=`$PYTHON --version 2>&1 | $SED -ne "1 s/Python \([[0-9\+\.]]\+\).*/\1/p"` +case "$PYTHON_VERSION" in +2.*) ;; +*) AC_MSG_ERROR([we need Python version 2.x but found $PYTHON_VERSION]) ;; +esac +AC_MSG_RESULT([$PYTHON_VERSION]) + dnl dnl We need the Python distutils dnl -- 1.9.2 -- ptxdist mailing list ptxdist@pengutronix.de