diff options
author | Björn Jacke <bj@sernet.de> | 2013-02-20 19:57:24 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-02-21 00:00:06 +0100 |
commit | 46ab33dc6753c135effedc204f3028a7e2bc2b1b (patch) | |
tree | f7af633a68a0c8ebbe40c77e343e3388baa0b6da /source3 | |
parent | 3d29bb2d37b02909ecb500e864f3c13e06957a86 (diff) | |
download | samba-46ab33dc6753c135effedc204f3028a7e2bc2b1b.tar.gz samba-46ab33dc6753c135effedc204f3028a7e2bc2b1b.tar.bz2 samba-46ab33dc6753c135effedc204f3028a7e2bc2b1b.zip |
build:autoconf: fix output of syslog-facility check
thanks to Thomas Bork for reporting!
Signed-off-by: Bjoern Jacke <bj@sernet.de>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Thu Feb 21 00:00:06 CET 2013 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 594f4b9e14..56c91903cb 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 |