This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: remove duplicate classpath.security
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 13 Jan 2006 14:21:54 -0700
- Subject: Patch: FYI: remove duplicate classpath.security
- Reply-to: tromey at redhat dot com
I'm checking this in on the trunk.
We had our own copy of classpath.security in libgcj, and since the big
merge we don't need this. This patch removes it.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* java/security/classpath.security: Removed.
* Makefile.in: Rebuilt.
* Makefile.am (install-data-local): Don't install
classpath.security.
Index: Makefile.am
===================================================================
--- Makefile.am (revision 109594)
+++ Makefile.am (working copy)
@@ -562,7 +562,7 @@
## FIXME: the obvious approach using lib_DATA doesn't work with
## automake 1.4.
$(mkinstalldirs) $(DESTDIR)$(secdir)
- @for f in classpath.security libgcj.security; do \
+ @for f in libgcj.security; do \
echo " $(INSTALL_DATA) $(srcdir)/java/security/$$f $(DESTDIR)$(secdir)/$$f"; \
$(INSTALL_DATA) $(srcdir)/java/security/$$f $(DESTDIR)$(secdir)/$$f; \
done