summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-08-31 05:36:49 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-09-09 17:04:36 +0200
commita53c3dbdee75a97fb52dc7f2b00efdaa310f89f6 (patch)
tree5627ddf45aa11c78c1ecfb87501b928b14107726
parent09d330c44762ad2857e9d94238dd1905202cf736 (diff)
downloadsssd-a53c3dbdee75a97fb52dc7f2b00efdaa310f89f6.tar.gz
sssd-a53c3dbdee75a97fb52dc7f2b00efdaa310f89f6.tar.xz
sssd-a53c3dbdee75a97fb52dc7f2b00efdaa310f89f6.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.
-rw-r--r--src/external/krb5.m43
-rw-r--r--src/external/nsupdate.m46
-rw-r--r--src/external/pac_responder.m43
-rw-r--r--src/external/python.m43
4 files changed, 10 insertions, 5 deletions
diff --git a/src/external/krb5.m4 b/src/external/krb5.m4
index f1679a151..71239c970 100644
--- a/src/external/krb5.m4
+++ b/src/external/krb5.m4
@@ -16,8 +16,9 @@ if test -x "$KRB5_CONFIG"; then
KRB5_LIBS="`$KRB5_CONFIG --libs`"
AC_MSG_RESULT(yes)
else
+ AC_MSG_RESULT([no])
if test x$KRB5_PASSED_LIBS = x; then
- AC_MSG_ERROR(no. Please install MIT kerberos devel package)
+ AC_MSG_ERROR([Please install MIT kerberos devel package])
fi
fi
diff --git a/src/external/nsupdate.m4 b/src/external/nsupdate.m4
index 9ccff6159..b7048d58a 100644
--- a/src/external/nsupdate.m4
+++ b/src/external/nsupdate.m4
@@ -9,9 +9,11 @@ if test -x "$NSUPDATE"; then
AC_MSG_RESULT([yes])
AC_DEFINE_UNQUOTED([HAVE_NSUPDATE_REALM], 1, [Whether to use the 'realm' directive with nsupdate])
else
- AC_MSG_WARN([no. Will build without the 'realm' directive])
+ AC_MSG_RESULT([no])
+ AC_MSG_WARN([Will build without the 'realm' directive])
fi
else
- AC_MSG_ERROR([no. nsupdate is not available])
+ AC_MSG_RESULT([no])
+ AC_MSG_ERROR([nsupdate is not available])
fi
diff --git a/src/external/pac_responder.m4 b/src/external/pac_responder.m4
index 733241a13..49d5cbb6d 100644
--- a/src/external/pac_responder.m4
+++ b/src/external/pac_responder.m4
@@ -22,9 +22,10 @@ then
Kerberos\ 5\ release\ 1.10* | \
Kerberos\ 5\ release\ 1.11*)
krb5_version_ok=yes
- AC_MSG_RESULT(yes)
+ AC_MSG_RESULT([yes])
;;
*)
+ AC_MSG_RESULT([no])
AC_MSG_WARN([Cannot build authdata plugin with this version of
MIT Kerberos, please use 1.9.x or later])
esac
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
])