>From c44468e0ec23e4b72f1e37e98be23ae71b6d0ed1 Mon Sep 17 00:00:00 2001 From: Peter O'Gorman Date: Mon, 14 Feb 2011 10:34:58 -0600 Subject: [PATCH] Install ltmain.sh without execute bit set. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Makefile.am: change install rule for ltmain.sh Reported by Křištof Želechovski. --- ChangeLog | 6 ++++++ Makefile.am | 3 ++- 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6e89fa8..7f74eab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-02-12 Peter O'Gorman + + Install ltmain.sh without execute bit set. + * Makefile.am: change install rule for ltmain.sh + Reported by Křištof Želechovski. + 2011-02-07 Ralf Wildenhues docs: fix copyright years in PDF version of the manual. diff --git a/Makefile.am b/Makefile.am index f0590a8..268b399 100644 --- a/Makefile.am +++ b/Makefile.am @@ -393,10 +393,11 @@ install-data-local: libltdl/Makefile.in ## install the helper scripts $(mkinstalldirs) $(DESTDIR)$(pkgdatadir) $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/config - @list='$(auxfiles)' && for p in $$list; do \ + @list='$(auxexefiles)' && for p in $$list; do \ echo " $(INSTALL_SCRIPT) '$(srcdir)/libltdl/$$p' '$(DESTDIR)$(pkgdatadir)/$$p'"; \ $(INSTALL_SCRIPT) "$(srcdir)/libltdl/$$p" "$(DESTDIR)$(pkgdatadir)/$$p"; \ done + $(INSTALL_DATA) "$(srcdir)/libltdl/config/ltmain.sh" "$(DESTDIR)$(pkgdatadir)/config/ltmain.sh" ## install the libltdl files $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/libltdl $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/libltdl/libltdl -- 1.7.3.4