summaryrefslogtreecommitdiff
path: root/aclocal
diff options
context:
space:
mode:
authorBryan Duxbury <bryanduxbury@apache.org>2009-01-29 01:21:20 +0000
committerBryan Duxbury <bryanduxbury@apache.org>2009-01-29 01:21:20 +0000
commit249d7cb199b5c08e7a7a51189a733cc8fef12cf9 (patch)
treea2ba11caa15e18c66f13d17ff7d8f43bc9c7d051 /aclocal
parent369417a5f15b54738d4954908fbb4908b8603295 (diff)
downloadthrift-249d7cb199b5c08e7a7a51189a733cc8fef12cf9.tar.gz
THRIFT-166. java: Java tests should be in lib/java/test/
THRIFT-221. java: Make java build classpath more dynamic and configurable This issue moves all the tests from test/java to lib/java/test/src and combines the build files. In addition, rather than continue on with the same busted approach to finding dependent jars for the tests, THRIFT-221 has been implemented, allowing the user to specify a .thrift-build.properties file in their home directory that contains additional classpath entries. As a result of this patch, "make check" does not currently work as it is expected to. This will be resolved in a follow-up commit. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@738695 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/ax_java.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal/ax_java.m4 b/aclocal/ax_java.m4
index 70ec2c345..abff8c6ca 100644
--- a/aclocal/ax_java.m4
+++ b/aclocal/ax_java.m4
@@ -32,7 +32,7 @@ dnl TODO: allow to exclude compilers (rationale: most Java programs cannot compi
dnl with some compilers like guavac).
AC_DEFUN([AX_PROG_JAVAC],[
-test -z "$JAVAC" && AC_CHECK_PROGS(JAVAC, "gcj -C" guavac jikes javac)
+test -z "$JAVAC" && AC_CHECK_PROGS(JAVAC, "gcj -C" guavac javac)
test -z "$JAVAC" && AC_MSG_ERROR([no acceptable Java compiler found in \$PATH])
AX_PROG_JAVAC_WORKS
])