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]

Patch: FYI: fix building of ecjx


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


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