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]

[ecj] Patch: FYI: fix tools build


I'm checking this in on the gcj-eclipse-merge-branch.

This fixes a buglet I introduced earlier.

Tom

Index: ChangeLog.gcj
from  Tom Tromey  <tromey@redhat.com>
	* tools/Makefile.am (GLIBJ_CLASSPATH): Look in srcdir.

Index: tools/Makefile.am
===================================================================
--- tools/Makefile.am	(revision 120014)
+++ tools/Makefile.am	(working copy)
@@ -2,7 +2,8 @@
 
 ## GCJ LOCAL: use srcdir to find core classes.
 GLIBJ_BOOTCLASSPATH='$(top_srcdir)/lib'
-GLIBJ_CLASSPATH=asm
+GLIBJ_CLASSPATH=$(srcdir)/asm
+## END GCJ LOCAL
 
 # Setup the compiler to use the GNU Classpath library we just build
 if FOUND_GCJ


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