From: Emil Velikov Date: Mon, 23 Mar 2015 17:49:23 +0000 (+0000) Subject: configure.ac: move AC_MSG_RESULT reporting back into the m4 macro X-Git-Tag: upstream/17.1.0~19831 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=248eb54eb6117cc5a863ba2deaa14c3bee0b5d41;p=platform%2Fupstream%2Fmesa.git configure.ac: move AC_MSG_RESULT reporting back into the m4 macro The one who does AC_MSG_CHECKING should provide the AC_MSG_RESULT. Fixes: ced9425327b (configure: Introduce new output variable to ax_check_python_mako_module.m4" Cc: "10.5" Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89328 Signed-off-by: Emil Velikov Reviewed-by: Samuel Iglesias Gonsalvez --- diff --git a/configure.ac b/configure.ac index 08378f5..3e5b6f5 100644 --- a/configure.ac +++ b/configure.ac @@ -123,9 +123,7 @@ if test "x$INDENT" != "xcat"; then fi AX_CHECK_PYTHON_MAKO_MODULE($PYTHON_MAKO_REQUIRED) -if test -n "$PYTHON2" -a "x$acv_mako_found" = "xyes"; then - AC_MSG_RESULT(yes) -else +if test -n "$PYTHON2" -a "x$acv_mako_found" != "xyes"; then AC_MSG_ERROR([Python mako module v$PYTHON_MAKO_REQUIRED or higher not found]) fi diff --git a/m4/ax_check_python_mako_module.m4 b/m4/ax_check_python_mako_module.m4 index ee68a7c..7d9bb51 100644 --- a/m4/ax_check_python_mako_module.m4 +++ b/m4/ax_check_python_mako_module.m4 @@ -54,8 +54,10 @@ else: " | $PYTHON2 - if test $? -ne 0 ; then + AC_MSG_RESULT(no) AC_SUBST(acv_mako_found, 'no') else + AC_MSG_RESULT(yes) AC_SUBST(acv_mako_found, 'yes') fi ])