This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[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 ;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]