diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-08-31 05:36:49 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-09 16:23:52 +0200 |
commit | 711f8acc0f520487060c308870f70dbbfa84f272 (patch) | |
tree | c13891d6555049151a08211f27e5447db0409e07 /src/external/python.m4 | |
parent | f705b1d1299b41e2f00722257db09d7b67167902 (diff) | |
download | sssd-711f8acc0f520487060c308870f70dbbfa84f272.tar.gz sssd-711f8acc0f520487060c308870f70dbbfa84f272.tar.xz sssd-711f8acc0f520487060c308870f70dbbfa84f272.zip |
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.
Diffstat (limited to 'src/external/python.m4')
-rw-r--r-- | src/external/python.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
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 ]) |