summaryrefslogtreecommitdiffstats
path: root/src/external/nsupdate.m4
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 /src/external/nsupdate.m4
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.
Diffstat (limited to 'src/external/nsupdate.m4')
-rw-r--r--src/external/nsupdate.m46
1 files changed, 4 insertions, 2 deletions
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