>From a925fb5f3277beea9e068ea94b1b4d2e4de22c64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?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 --- source3/configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index 937b045..552535b 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 -- 1.8.0