From: Gary V. Vaughan Date: Tue, 8 Nov 2011 17:53:33 +0000 (+0700) Subject: install: correct a typo in pkgaux_files location. X-Git-Tag: v2.4.2.418~279 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43abb0c70b9429047a86d40584417eb2af850c6c;p=thirdparty%2Flibtool.git install: correct a typo in pkgaux_files location. * Makefile.am (install-data-local): Install pkgaux_files directly from $(aux_dir) [./libltdl/config at the moment]. Signed-off-by: Gary V. Vaughan --- diff --git a/Makefile.am b/Makefile.am index 0ca8fbf94..6960666c5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -507,14 +507,14 @@ install-data-local: $(lt_Makefile_in) for p in $$list; do \ d=`echo "$(DESTDIR)$(pkgdatadir)/$$p" |$(SED) 's,[^/]*$$,,'`; \ test -d "$$d" || $(mkinstalldirs) "$$d"; \ - echo " $(INSTALL_SCRIPT) '$(srcdir)/$(ltdl_dir)/$$p' '$(DESTDIR)$(pkgdatadir)/$$p'"; \ - $(INSTALL_SCRIPT) "$(srcdir)/$(ltdl_dir)/$$p" "$(DESTDIR)$(pkgdatadir)/$$p"; \ + echo " $(INSTALL_SCRIPT) '$(srcdir)/$(aux_dir)/$$p' '$(DESTDIR)$(pkgdatadir)/$$p'"; \ + $(INSTALL_SCRIPT) "$(srcdir)/$(aux_dir)/$$p" "$(DESTDIR)$(pkgdatadir)/$$p"; \ done @list='$(auxfiles)' && for p in $$list; do \ d=`echo "$(DESTDIR)$(pkgdatadir)/$$p" |$(SED) 's,[^/]*$$,,'`; \ test -d "$$d" || $(mkinstalldirs) "$$d"; \ - echo " $(INSTALL_DATA) '$(srcdir)/$(ltdl_dir)/$$p' '$(DESTDIR)$(pkgdatadir)/$$p'"; \ - $(INSTALL_DATA) "$(srcdir)/$(ltdl_dir)/$$p" "$(DESTDIR)$(pkgdatadir)/$$p"; \ + echo " $(INSTALL_DATA) '$(srcdir)/$(aux_dir)/$$p' '$(DESTDIR)$(pkgdatadir)/$$p'"; \ + $(INSTALL_DATA) "$(srcdir)/$(aux_dir)/$$p" "$(DESTDIR)$(pkgdatadir)/$$p"; \ done ## install the libltdl files @list='$(pkgltdl_files)' && for p in $$list; do \