This is the mail archive of the java@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]

Re: gcj trunk - gc_analyze/SymbolLookup.java is specified more than once


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; \

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