Commit fad163ed by Tom Tromey Committed by Tom Tromey

Makefile.in: Rebuilt.

	* Makefile.in: Rebuilt.
	* Makefile.am (libgcj.zip): Don't pass -L to javac.

From-SVN: r33728
parent 846cf122
2000-05-06 Tom Tromey <tromey@cygnus.com>
* Makefile.in: Rebuilt.
* Makefile.am (libgcj.zip): Don't pass -L to javac.
2000-05-05 Tom Tromey <tromey@cygnus.com> 2000-05-05 Tom Tromey <tromey@cygnus.com>
Fix for PR libgcj/220: Fix for PR libgcj/220:
......
...@@ -173,7 +173,7 @@ libgcj.zip: $(java_source_files) $(cond_awt_java_source_files) ...@@ -173,7 +173,7 @@ libgcj.zip: $(java_source_files) $(cond_awt_java_source_files)
## This little nastiness is here so that the backquoted stuff in the ## This little nastiness is here so that the backquoted stuff in the
## GCJ definition can be correctly expanded, if required. ## GCJ definition can be correctly expanded, if required.
javac="$(JAVAC)"; cd $(srcdir); \ javac="$(JAVAC)"; cd $(srcdir); \
$$javac -L$(here) $(JCFLAGS) -classpath $(here):`/bin/pwd` -d $(here) \ $$javac $(JCFLAGS) -classpath $(here):`/bin/pwd` -d $(here) \
$(subst $(srcdir)/,,$?) $(subst $(srcdir)/,,$?)
-@rm -f libgcj.zip -@rm -f libgcj.zip
## Note that we explicitly want to include directory information. ## Note that we explicitly want to include directory information.
......
...@@ -1708,7 +1708,7 @@ $(built_java_source_files:.java=.class): $(built_java_source_files) ...@@ -1708,7 +1708,7 @@ $(built_java_source_files:.java=.class): $(built_java_source_files)
libgcj.zip: $(java_source_files) $(cond_awt_java_source_files) libgcj.zip: $(java_source_files) $(cond_awt_java_source_files)
$(MAKE) $(built_java_source_files:.java=.class) $(MAKE) $(built_java_source_files:.java=.class)
javac="$(JAVAC)"; cd $(srcdir); \ javac="$(JAVAC)"; cd $(srcdir); \
$$javac -L$(here) $(JCFLAGS) -classpath $(here):`/bin/pwd` -d $(here) \ $$javac $(JCFLAGS) -classpath $(here):`/bin/pwd` -d $(here) \
$(subst $(srcdir)/,,$?) $(subst $(srcdir)/,,$?)
-@rm -f libgcj.zip -@rm -f libgcj.zip
$(ZIP) -r libgcj java gnu -n .class -i '*.class' -i '*/' $(ZIP) -r libgcj java gnu -n .class -i '*.class' -i '*/'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment