This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: fix PR 27818
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 05 Jun 2006 09:04:56 -0600
- Subject: Patch: FYI: fix PR 27818
- Reply-to: tromey at redhat dot com
I'm checking this in.
This fixes PR 27818. We were incorrectly installing bits of libltdl.
This is a buglet in libltdl's Makefile; apparently it is also fixed
upstream.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
PR gcc/27818:
* Makefile.in: Rebuilt.
* Makefile.am (install-data-local): Define conditionally.
Index: Makefile.am
===================================================================
--- Makefile.am (revision 114348)
+++ Makefile.am (working copy)
@@ -42,6 +42,8 @@
install-sh missing ltmain.sh \
ltdl.c ltdl.h
+## GCJ LOCAL: fix install buglet. See PR 27818
+if INSTALL_LTDL
## To avoid spurious reconfiguration when the user installs these files
## with libtoolize, we have to preserve their timestamps carefully:
install-data-local:
@@ -49,3 +51,4 @@
$(mkinstalldirs) $(DESTDIR)$(ltdldatadir)
( cd $(srcdir) && $(AMTAR) chf - $(ltdldatafiles); ) \
| ( umask 0 && cd $(DESTDIR)$(ltdldatadir) && $(AMTAR) xf -; )
+endif