This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[cp-0.98, patch] Fix path name in check for generated gjdoc parser files
- From: Matthias Klose <doko at cs dot tu-berlin dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Mon, 20 Oct 2008 23:03:57 +0200
- Subject: [cp-0.98, patch] Fix path name in check for generated gjdoc parser files
Seems to be difficult to free a system of all java stuff to test
without any java ;p without this, the configury does insist on an
antlr binary. committed to the branch.
Matthias
ChangeLog.gcj
2008-10-20 Matthias Klose <doko@ubuntu.com>
* configure.ac: Fix path name in check for generated gjdoc parser files.
* configure: Regenerate.
Index: configure.ac
===================================================================
--- configure.ac (revision 141239)
+++ configure.ac (working copy)
@@ -387,7 +387,7 @@
no) REGENERATE_GJDOC_PARSER=no ;;
*) REGENERATE_GJDOC_PARSER=yes ;;
esac],
- [if test -e ${srcdir}/tools/generated/gnu/classpath/tools/gjdoc/expr/JavaLexer.java; then
+ [if test -e ${srcdir}/tools/gnu/classpath/tools/gjdoc/expr/JavaLexer.java; then
REGENERATE_GJDOC_PARSER=no ;
else
REGENERATE_GJDOC_PARSER=yes ;