diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-08-24 12:21:28 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-08-24 12:21:28 +0200 |
commit | 03918b4478f5523873af32e3f9a62222f5ab7f20 (patch) | |
tree | 8fcbd35a11f49521cdf35ace7906d0a8747dafb2 /tests | |
parent | bd7542b51593739893922e8ec8fb6d7195d06cbe (diff) | |
download | rsyslog-03918b4478f5523873af32e3f9a62222f5ab7f20.tar.gz rsyslog-03918b4478f5523873af32e3f9a62222f5ab7f20.tar.xz rsyslog-03918b4478f5523873af32e3f9a62222f5ab7f20.zip |
bugfix: Java testing tools were required, even if testbench was disabled
This resulted in build errors if no Java was present on the build system,
even though none of the selected option actually required Java.
(I forgot to backport a similar fix to newer releases).
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 88c3137e..3f5a6c33 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -12,14 +12,14 @@ if ENABLE_OMSTDOUT TESTS += omod-if-array.sh parsertest.sh inputname.sh fieldtest.sh endif +check_JAVA = DiagTalker.java + endif # if ENABLE_TESTBENCH TESTS_ENVIRONMENT = RSYSLOG_MODDIR='$(abs_top_builddir)'/runtime/.libs/ DISTCLEANFILES=rsyslog.pid '$(abs_top_builddir)'/DiagTalker.class test_files = testbench.h runtime-dummy.c -check_JAVA = DiagTalker.java - EXTRA_DIST= 1.rstest 2.rstest 3.rstest err1.rstest \ validation-run.sh \ testsuites/invalid.conf \ |