hi all,
attached is a patch from Andrew.
cheers,
dalibor topic
2007-04-19 Andrew John Hughes <[EMAIL PROTECTED]>
* m4/acinclude.m4
(CLASSPATH_FIND_JAVAC): Allow detected JAVAC.
Index: ChangeLog
===================================================================
RCS file: /sources/classpath/classpath/ChangeLog,v
retrieving revision 1.9274
diff -u -r1.9274 ChangeLog
--- ChangeLog 19 Apr 2007 10:53:55 -0000 1.9274
+++ ChangeLog 19 Apr 2007 11:08:01 -0000
@@ -1,9 +1,14 @@
+2007-04-19 Andrew John Hughes <[EMAIL PROTECTED]>
+
+ * m4/acinclude.m4
+ (CLASSPATH_FIND_JAVAC): Allow detected JAVAC.
+
2007-04-19 Dalibor Topic <[EMAIL PROTECTED]>
* lib/Makefile.am (propertyfiles, cssfiles, metafiles,
iconfiles) Removed variables, inlined them into resource
target to avoid use of shell construct and fix portability
- warning from autimake 1.10.
+ warning from automake 1.10.
2007-04-18 Tom Tromey <[EMAIL PROTECTED]>
Index: m4/acinclude.m4
===================================================================
RCS file: /sources/classpath/classpath/m4/acinclude.m4,v
retrieving revision 1.17
diff -u -r1.17 acinclude.m4
--- m4/acinclude.m4 17 Apr 2007 19:43:30 -0000 1.17
+++ m4/acinclude.m4 19 Apr 2007 11:08:14 -0000
@@ -25,7 +25,7 @@
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
])