This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: fix PR 26901 (temporarily)
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 29 Mar 2006 13:27:31 -0700
- Subject: Patch: FYI: fix PR 26901 (temporarily)
- Reply-to: tromey at redhat dot com
I'm checking this in.
This fixes PR 26901, for the time being, by disabling the build of the
'tools' directory. This is ok since we don't yet actually turn any of
these tools into executables (there's a PR for this).
A temporary fix is warranted here as this can break the build.
Tom
Index: ChangeLog.gcj
from Tom Tromey <tromey@redhat.com>
PR gcc/26901:
* Makefile.in: Rebuilt.
* Makefile.am (SUBDIRS): Remove 'tools'.
(DIST_SUBDIRS): Likewise.
Index: Makefile.am
===================================================================
--- Makefile.am (revision 112470)
+++ Makefile.am (working copy)
@@ -1,8 +1,10 @@
## Input file for automake to generate the Makefile.in used by configure
# lib first, to compile .class files before native code, last examples
-SUBDIRS = lib doc external include native resource scripts tools $(EXAMPLESDIR)
-DIST_SUBDIRS = lib doc external include native resource scripts tools examples
+## GCJ LOCAL: we remove 'tools' for the time being.
+## We don't build any of them into actual tools yet.
+SUBDIRS = lib doc external include native resource scripts $(EXAMPLESDIR)
+DIST_SUBDIRS = lib doc external include native resource scripts examples
## GCJ LOCAL: we need an extra -I here.
ACLOCAL_AMFLAGS = -I m4 -I ../.. -I ../../config