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]

[4.2 / ecj] Patch: FYI: fix src.zip


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

This fixes PR 30110 by including more sources in src.zip.
Jakub, I think we want this in some future FC 6 update as well.

Tom

Index: ChangeLog
from  Ben Konrath  <bkonrath@redhat.com>

	* Makefile.am: Add contents of classpath/external to src.zip.
	* Makefile.in: Regenerate.

Index: Makefile.am
===================================================================
--- Makefile.am	(revision 119663)
+++ Makefile.am	(working copy)
@@ -913,6 +913,27 @@
 	    echo $(srcdir)/classpath; \
 	    echo $$file; \
 	  done ); \
+	  ( cd $(srcdir)/classpath/external/sax; \
+	  find org -name '*.java' -print | \
+	  while read file; do \
+	    echo "x-C" | sed -e 's/^.//'; \
+	    echo $(srcdir)/classpath/external/sax; \
+	    echo $$file; \
+	  done ); \
+	  ( cd $(srcdir)/classpath/external/relaxngDatatype; \
+	  find org -name '*.java' -print | \
+	  while read file; do \
+	    echo "x-C" | sed -e 's/^.//'; \
+	    echo $(srcdir)/classpath/external/relaxngDatatype; \
+	    echo $$file; \
+	  done ); \
+	  ( cd $(srcdir)/classpath/external/w3c_dom; \
+	  find org -name '*.java' -print | \
+	  while read file; do \
+	    echo "x-C" | sed -e 's/^.//'; \
+	    echo $(srcdir)/classpath/external/w3c_dom; \
+	    echo $$file; \
+	  done ); \
 ## Now the build tree.
 	  ( cd classpath; \
 	    find gnu java -name '*.java' -print | \


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