This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: FYI: fix PR 27818


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]