diff options
author | Michael Biebl <biebl@debian.org> | 2009-05-18 21:41:31 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-05-19 07:31:22 +0200 |
commit | 460edfe27fcca96e88d6541a3e1ccb49ab4b1a7a (patch) | |
tree | 102ab3407840f5bc48a8b5d26baaa3875ad66b02 /configure.ac | |
parent | 5ab3e8005f62c2016bdb2d3b099d1d8c1a4cf2bc (diff) | |
download | rsyslog-460edfe27fcca96e88d6541a3e1ccb49ab4b1a7a.tar.gz rsyslog-460edfe27fcca96e88d6541a3e1ccb49ab4b1a7a.tar.xz rsyslog-460edfe27fcca96e88d6541a3e1ccb49ab4b1a7a.zip |
Do not fail "make check" if omstdout is not enabled
Only run omod-if-array.sh and parsertest.sh test if omstdout plugin is
enabled.
Remove the comment and fix the help output for --enable-stdout (default
was "no", not "yes")
Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index a93a968c..9b160379 100644 --- a/configure.ac +++ b/configure.ac @@ -736,10 +736,8 @@ AM_CONDITIONAL(ENABLE_OMTEMPLATE, test x$enable_omtemplate = xyes) # settings for omstdout -# note that "make check" fails, if omstdout is not enabled (thus we enable -# it by default). AC_ARG_ENABLE(omstdout, - [AS_HELP_STRING([--enable-omstdout],[Compiles stdout template module @<:@default=yes@:>@])], + [AS_HELP_STRING([--enable-omstdout],[Compiles stdout template module @<:@default=no@:>@])], [case "${enableval}" in yes) enable_omstdout="yes" ;; no) enable_omstdout="no" ;; |