From 46ab33dc6753c135effedc204f3028a7e2bc2b1b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Wed, 20 Feb 2013 19:57:24 +0100 Subject: [PATCH] build:autoconf: fix output of syslog-facility check thanks to Thomas Bork for reporting! Signed-off-by: Bjoern Jacke Reviewed-by: Andrew Bartlett Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Thu Feb 21 00:00:06 CET 2013 on sn-devel-104 --- source3/configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index 594f4b9e14f..56c91903cb9 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4512,12 +4512,15 @@ AC_ARG_WITH(syslog-facility, if test "$withval" = "no" ; then AC_MSG_ERROR([argument to --with-syslog-facility must be a string]) else + AC_MSG_RESULT([$withval]) if test "$withval" != "yes" ; then syslog_facility="$withval" AC_DEFINE_UNQUOTED(SYSLOG_FACILITY,$syslog_facility, [syslog facility to log to]) fi fi -]) +], +AC_MSG_RESULT(no) +) ################################################# # check for experimental disk-quotas support -- 2.11.4.GIT