From: Peter O'Gorman Date: Mon, 14 Feb 2011 16:34:58 +0000 (-0600) Subject: Install ltmain.sh without execute bit set. X-Git-Tag: v2.4.2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c44468e0ec23e4b72f1e37e98be23ae71b6d0ed1;p=thirdparty%2Flibtool.git Install ltmain.sh without execute bit set. * Makefile.am: change install rule for ltmain.sh Reported by Křištof Želechovski. --- diff --git a/ChangeLog b/ChangeLog index 6e89fa88a..7f74eab91 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 f0590a8d3..268b3997d 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