This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: gcj trunk - gc_analyze/SymbolLookup.java is specified more than once
- From: David Daney <ddaney at avtrex dot com>
- To: David Daney <ddaney at avtrex dot com>
- Cc: Matthias Klose <doko at ubuntu dot com>, GCC Java <java at gcc dot gnu dot org>
- Date: Sun, 04 Mar 2007 18:20:19 -0800
- Subject: Re: gcj trunk - gc_analyze/SymbolLookup.java is specified more than once
- References: <45EB5CCA.5010903@ubuntu.com> <45EB7B05.2030607@avtrex.com>
David Daney wrote:
Matthias Klose wrote:
Seen this on i486-linux, when building from the trunk; vm-tools.lst
does have the file twice, but I currently fail to see how it ends up
twice there.
Perhaps you could share your top level configure command.
There should only be on $pkg in the for loop
(gnu/gcj/tools/gc_analyze). You could try running the find by hand
using that value to see what is happening.
David Daney
I think there may be leftover garbage please try the attached patch (you
will have to automake etc).
David Daney
Index: classpath/tools/Makefile.am
===================================================================
--- classpath/tools/Makefile.am (revision 122539)
+++ classpath/tools/Makefile.am (working copy)
@@ -155,6 +155,7 @@ $(TOOLS_ZIP): $(TOOLS_JAVA_FILES)
## mkdir classes asm
find $(srcdir)/external/asm -name '*.java' -print > asm.lst
find $(srcdir)/gnu/classpath/tools -name '*.java' -print > classes.lst
+ -rm vm-tools.lst
if [ -f $(top_builddir)/../vm-tools-packages ]; then \
for pkg in `cat $(top_builddir)/../vm-tools-packages`; do \
$(FIND) $(top_srcdir)/../$$pkg -follow -name '*.java' -print >> vm-tools.lst; \