This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: fix building of ecjx
- From: Tom Tromey <tromey at redhat dot com>
- To: GCJ-patches <java-patches at gcc dot gnu dot org>
- Date: 18 Jan 2007 06:42:58 -0700
- Subject: Patch: FYI: fix building of ecjx
- Reply-to: tromey at redhat dot com
I'm checking this in.
Yesterday's big configury merge broke building of ecjx and I didn't
notice :(. Mark pointed it out this morning. Here's the fix.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* configure: Rebuilt.
* configure.ac: Use multi_basedir instead of libgcj_basedir.
Index: configure.ac
===================================================================
--- configure.ac (revision 120880)
+++ configure.ac (working copy)
@@ -478,8 +478,8 @@
AC_ARG_WITH(ecj-jar,
AS_HELP_STRING([--with-ecj-jar=FILE], [use preinstalled ecj jar]),
[ECJ_JAR=$withval],
- [if test -f $libgcj_basedir/../ecj.jar; then
- ECJ_BUILD_JAR=$libgcj_basedir/../ecj.jar
+ [if test -f $multi_basedir/ecj.jar; then
+ ECJ_BUILD_JAR=$multi_basedir/ecj.jar
ECJ_JAR='$(jardir)/ecj.jar'
install_ecj_jar=yes
fi])