From 711f8acc0f520487060c308870f70dbbfa84f272 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sat, 31 Aug 2013 05:36:49 +0200 Subject: AUTOTOOLS: Add missing AC_MSG_RESULT AC_MSG_RESULT was not used everywhere after AC_MSG_CHECKING. Therefore two lines from configure output was mixed in some cases. --- src/external/python.m4 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/external/python.m4') diff --git a/src/external/python.m4 b/src/external/python.m4 index 5f48bc926..cfe9961c7 100644 --- a/src/external/python.m4 +++ b/src/external/python.m4 @@ -23,7 +23,8 @@ dnl versions of python ' -L' + sysconfig.get_config_var('LIBDIR')\"`" AC_MSG_RESULT([yes]) else - AC_MSG_ERROR([no. Please install python devel package]) + AC_MSG_RESULT([no]) + AC_MSG_ERROR([Please install python devel package]) fi ]) -- cgit