diff options
| author | Tom Tromey <tromey@redhat.com> | 2001-10-18 00:03:48 +0000 |
|---|---|---|
| committer | Tom Tromey <tromey@gcc.gnu.org> | 2001-10-18 00:03:48 +0000 |
| commit | 9c48b4d1e45a17795b4c37a359433c254f8c2d77 (patch) | |
| tree | 8deffa5ed0cc2193168a45282aeec9f22daf74f9 /libjava/Makefile.am | |
| parent | fcb4e2ef922062d2de67ef10e1a57bc4629d2ff1 (diff) | |
| download | gcc-9c48b4d1e45a17795b4c37a359433c254f8c2d77.tar.gz gcc-9c48b4d1e45a17795b4c37a359433c254f8c2d77.tar.bz2 gcc-9c48b4d1e45a17795b4c37a359433c254f8c2d77.zip | |
Makefile.in: Rebuilt.
* Makefile.in: Rebuilt.
* Makefile.am (secdir): New macro.
(install-data-local): Install new data files.
* java/security/classpath.security: New file.
* java/security/libgcj.security: New file.
From-SVN: r46326
Diffstat (limited to 'libjava/Makefile.am')
| -rw-r--r-- | libjava/Makefile.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libjava/Makefile.am b/libjava/Makefile.am index fd450870c02..223d2ffe780 100644 --- a/libjava/Makefile.am +++ b/libjava/Makefile.am @@ -33,6 +33,9 @@ toolexeclib_LTLIBRARIES = libgcj.la $(cond_x_ltlibrary) toolexeclib_DATA = libgcj.spec data_DATA = libgcj.jar +## FIXME: Using libdir violates GNU coding standards. +secdir = $(libdir)/security + ## For now, only on native systems. FIXME. if NATIVE bin_PROGRAMS = jv-convert gij rmic rmiregistry @@ -352,6 +355,13 @@ install-data-local: echo " $(INSTALL_DATA) $$p $(DESTDIR)$(includedir)/$$f"; \ $(INSTALL_DATA) $$p $(DESTDIR)$(includedir)/$$f; \ done +## 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 \ + echo " $(INSTALL_DATA) $(srcdir)/java/security/$$f $(DESTDIR)$(secdir)/$$f"; \ + $(INSTALL_DATA) $(srcdir)/java/security/$$f $(DESTDIR)$(secdir)/$$f; \ + done ## ################################################################ |
