summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDalibor Topic <robilad@yahoo.com>2007-04-19 11:12:30 +0000
committerDalibor Topic <robilad@yahoo.com>2007-04-19 11:12:30 +0000
commit94e8957b2c9896a50ecc46721767e55ccac66a88 (patch)
treee57f5941d0c592caf6bb9a99c1f20e90239ca0cf /m4
parent1a1b751cb05793b0be82333e6b0cd5e04e043362 (diff)
downloadclasspath-94e8957b2c9896a50ecc46721767e55ccac66a88.tar.gz
2007-04-19 Andrew John Hughes <gnu_andrew@member.fsf.org>
* m4/acinclude.m4 (CLASSPATH_FIND_JAVAC): Allow detected JAVAC.
Diffstat (limited to 'm4')
-rw-r--r--m4/acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/acinclude.m4 b/m4/acinclude.m4
index 6cdab2969..58ee55260 100644
--- a/m4/acinclude.m4
+++ b/m4/acinclude.m4
@@ -25,7 +25,7 @@ dnl AM_CONDITIONAL(FOUND_JIKES, test "x${user_specified_javac}" = xjikes)
dnl AM_CONDITIONAL(FOUND_KJC, test "x${user_specified_javac}" = xkjc)
dnl if test "x${GCJ}" = x && test "x${JIKES}" = x && test "x${user_specified_javac}" != xkjc; then
- if test "x${ECJ}" = x && test "x${user_specified_javac}" != xecj; then
+ if test "x${ECJ}" = x && test "x${JAVAC}" = x && test "x${user_specified_javac}" != xecj; then
AC_MSG_ERROR([cannot find javac, try --with-ecj])
fi
])