You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jf...@apache.org on 2014/11/21 16:07:27 UTC

thrift git commit: THRIFT-2843: Automake configure.ac has possible typo related to Java Client: build Patch: Cash Costello

Repository: thrift
Updated Branches:
  refs/heads/master ba3023968 -> ea2fbcfc9


THRIFT-2843: Automake configure.ac has possible typo related to Java
Client: build
Patch: Cash Costello

Fixes typo in configure.ac for java detection.

This closes #279
commit 6cca2524b1d40375b383abef09a76d272be310c5
Author: Cash Costello <ca...@jhuapl.edu>
Date: 2014-11-21T14:29:25Z


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/ea2fbcfc
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/ea2fbcfc
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/ea2fbcfc

Branch: refs/heads/master
Commit: ea2fbcfc917ea84f5f367fbbc5ea5bffe023eae8
Parents: ba30239
Author: jfarrell <jf...@apache.org>
Authored: Fri Nov 21 10:06:01 2014 -0500
Committer: jfarrell <jf...@apache.org>
Committed: Fri Nov 21 10:06:55 2014 -0500

----------------------------------------------------------------------
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/ea2fbcfc/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index fde0ad6..ce9191f 100755
--- a/configure.ac
+++ b/configure.ac
@@ -186,7 +186,7 @@ if test "$with_java" = "yes";  then
   AX_CHECK_ANT_VERSION($ANT, 1.7)
   AC_SUBST(CLASSPATH)
   AC_SUBST(ANT_FLAGS)
-  if test "x$JAVAC" != "x" && test "x$JAVAC" != "x" && test "x$ANT" != "x" ; then
+  if test "x$JAVA" != "x" && test "x$JAVAC" != "x" && test "x$ANT" != "x" ; then
     have_java="yes"
   fi
 fi