From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-ee0-x230.google.com ([2a00:1450:4013:c00::230]) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1WcBS0-0003WT-Bh for ptxdist@pengutronix.de; Mon, 21 Apr 2014 12:28:08 +0200 Received: by mail-ee0-f48.google.com with SMTP id b57so3493680eek.21 for ; Mon, 21 Apr 2014 03:27:43 -0700 (PDT) From: Alexander Aring Date: Mon, 21 Apr 2014 12:27:33 +0200 Message-Id: <1398076053-32605-5-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 4/4] configure.ac: use Python instead python everywhere 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 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 3c4f956..9c3651d 100644 --- a/configure.ac +++ b/configure.ac @@ -293,13 +293,13 @@ dnl Check for gcc AC_PATH_PROGS(GCC, gcc,, $PATH) dnl -dnl Checks for python, needed for ipkg-utils +dnl Checks for Python, needed for ipkg-utils dnl -AC_ARG_WITH(python, AS_HELP_STRING([--with-python],[name of the python executable to use]), +AC_ARG_WITH(python, AS_HELP_STRING([--with-python],[name of the Python executable to use]), [ PYTHON="$withval" AC_SUBST(PYTHON) - AC_MSG_NOTICE([Using python executable $PYTHON]) + AC_MSG_NOTICE([Using Python executable $PYTHON]) ],[ AC_PATH_PROGS(PYTHON, python2 python2.7 python2.6 python) AC_SUBST(PYTHON) @@ -327,13 +327,13 @@ else AC_MSG_ERROR(Please install the Python distutils package) fi -AC_MSG_CHECKING(whether python development files are present) +AC_MSG_CHECKING(whether Python development files are present) PYTHON_MAKEFILE=`$PYTHON -c "import distutils.sysconfig; print distutils.sysconfig.get_makefile_filename()" 2> /dev/null` if test -e "$PYTHON_MAKEFILE"; then AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) - AC_MSG_ERROR([some python development files could not be found, you are + AC_MSG_ERROR([some Python development files could not be found, you are likely using suse or redhat system as host. In this case please install the python-devel packages]) fi -- 1.9.2 -- ptxdist mailing list ptxdist@pengutronix.de