This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[4.2 / ecj] Patch: FYI: fix src.zip
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Cc: Jakub Jelinek <jakub at redhat dot com>
- Date: 08 Dec 2006 13:06:33 -0700
- Subject: [4.2 / ecj] Patch: FYI: fix src.zip
- Reply-to: tromey at redhat dot com
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 | \