diff options
author | Alan Conway <aconway@apache.org> | 2007-08-29 16:24:16 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-08-29 16:24:16 +0000 |
commit | 7422e57391a89bc2493cba18ca2ef0a84fec7baa (patch) | |
tree | cd3d3992b1803b56769e793073e57641b405f7d3 /cpp | |
parent | 716150668931a1461569b3020d38a30f8b9afe69 (diff) | |
download | qpid-python-7422e57391a89bc2493cba18ca2ef0a84fec7baa.tar.gz |
Remove Java from code generation check.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@570855 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/configure.ac b/cpp/configure.ac index cdfe727929..4ba175a71c 100644 --- a/cpp/configure.ac +++ b/cpp/configure.ac @@ -116,9 +116,7 @@ AM_CONDITIONAL([HAS_RPMLINT], [test -n "$RPMLINT"]) # It requires several external tools and files, which we check for here. AC_CHECK_PROG([RUBY], [ruby], [ruby]) -AC_CHECK_PROG([JAVA], [java], [java]) -AC_CHECK_PROG([JAVAC], [javac], [javac]) -test -n "$RUBY" -a -n "$JAVA" -a -n "$JAVAC" && generate=yes +test -n "$RUBY" && generate=yes specdir=`pwd`/$srcdir/../specs AMQP_XML=$specdir/amqp-transitional.0-10.xml |