This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
A makefile patch for libgcj
- To: java-patches at sourceware dot cygnus dot com
- Subject: A makefile patch for libgcj
- From: "H.J. Lu" <hjl at valinux dot com>
- Date: Mon, 3 Apr 2000 10:40:56 -0700
Here is a patch for libgcj 2.95.1. The problem is $(javao_files) needs
libgcj.zip. But there is no dependency. It causes a problem for the
pareallel build.
--
H.J. Lu (hjl@gnu.org)
--
--- libjava/Makefile.am.parallel Sat Apr 1 16:47:57 2000
+++ libjava/Makefile.am Sat Apr 1 17:21:31 2000
@@ -155,6 +155,8 @@ $(c_files): java/lang/fdlibm.h java/lang
$(javao_files): %.lo: %.java
$(GCJCOMPILE) -o $@ $<
+$(javao_files): libgcj.zip
+
## ################################################################
##
--- libjava/Makefile.in.parallel Sat Apr 1 16:48:04 2000
+++ libjava/Makefile.in Sat Apr 1 17:25:20 2000
@@ -1400,6 +1400,8 @@ $(c_files): java/lang/fdlibm.h java/lang
$(javao_files): %.lo: %.java
$(GCJCOMPILE) -o $@ $<
+$(javao_files): libgcj.zip
+
.class.h:
$(GCJH) -classpath $(top_builddir) $(basename $<)