This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[ecj] Patch: FYI: fix tools build
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 18 Dec 2006 15:31:28 -0700
- Subject: [ecj] Patch: FYI: fix tools build
- Reply-to: tromey at redhat dot com
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