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 PR 26901 (temporarily)


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


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