Patch: FYI: fix building of ecjx

Tom Tromey tromey@redhat.com
Thu Jan 18 15:52:00 GMT 2007


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])



More information about the Java-patches mailing list