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]

Re: [cp-0.98, patch] Fix path name in check for generated gjdoc parser files


2008/10/20 Matthias Klose <doko@cs.tu-berlin.de>:
> 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 ;
>

This isn't the correct fix.  gcj has diverged from Classpath
unnecessarily by placing these files
in tools rather than tools/generated.  I'll patch this instead.
-- 
Andrew :-)

Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net

PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint: F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8


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