diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | m4/acinclude.m4 | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2007-10-12 Andrew John Hughes <gnu_andrew@member.fsf.org> + + PR classpath/33623: + * m4/acinclude.m4: + Fix typo which prevents --with-ecj being used. + 2007-10-11 Roman Kennke <roman.kennke@aicas.com> * javax/swing/plaf/basic/BasicTreeUI.java diff --git a/m4/acinclude.m4 b/m4/acinclude.m4 index 200bda885..a9b6fd811 100644 --- a/m4/acinclude.m4 +++ b/m4/acinclude.m4 @@ -15,7 +15,7 @@ dnl CLASSPATH_WITH_KJC if test "x${user_specified_ecj}" = x; then AM_CONDITIONAL(FOUND_ECJ, test "x${ECJ}" != x) else - AM_CONDITIONAL(FOUND_ECJ, test "x${user_specified_javac}" = xecj && test "x${ECJ}" != x) + AM_CONDITIONAL(FOUND_ECJ, test "x${user_specified_ecj}" = xecj && test "x${ECJ}" != x) fi if test "x${user_specified_javac}" = x; then |