This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[patch] fix ONESTEP fallout
- From: Andreas Tobler <toa at pop dot agri dot ch>
- To: Java Patches <java-patches at gcc dot gnu dot org>
- Date: Sat, 26 Mar 2005 11:09:00 +0100
- Subject: [patch] fix ONESTEP fallout
Hi,
this patchlet fixes a build failure introduced lately.
Ok for main.
Andreas
2005-03-26 Andreas Tobler <a.tobler@schweiz.ch>
* Makefile.am (classes.stamp): Add gnu/gcj/tools/gcj_dbtool/Main.java
to fix a ONESTEP fallout.
* Makefile.in: Regenerate.
Index: Makefile.am
===================================================================
RCS file: /cvs/gcc/gcc/libjava/Makefile.am,v
retrieving revision 1.467
diff -u -r1.467 Makefile.am
--- Makefile.am 25 Mar 2005 00:38:40 -0000 1.467
+++ Makefile.am 26 Mar 2005 10:07:26 -0000
@@ -548,7 +548,7 @@
# Compile all classfiles in one go.
-classes.stamp: $(all_java_source_files)
+classes.stamp: $(all_java_source_files) gnu/gcj/tools/gcj_dbtool/Main.java
@echo Compiling Java sourcefiles...
@: $(call write_entries_to_file,$?,libgcj.sourcelist)
$(JAVAC) $(JCFLAGS) -classpath '' -bootclasspath $(BOOTCLASSPATH) -d $(here) @libgcj.sourcelist
@@ -557,7 +557,7 @@
# classfiles are compiled in one go when classes.stamp is built and 2)
# anything which depends on a particular .class file must wait until
# this file is built.
-$(all_java_class_files): classes.stamp
+$(all_java_class_files) gnu/gcj/tools/gcj_dbtool/Main.class: classes.stamp
else # !ONESTEP