From: Glenn Morris Date: Thu, 10 Jun 2010 05:34:38 +0000 (-0700) Subject: * Makefile.in (install-arch-indep): Gzip the info files too. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~80 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d772827cafca73302741747867f1c9ce514fe509;p=emacs.git * Makefile.in (install-arch-indep): Gzip the info files too. --- diff --git a/ChangeLog b/ChangeLog index 1b73384bc59..57d3f3f7a33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2010-06-10 Glenn Morris + * Makefile.in (install-arch-indep): Gzip the info files too. + * make-dist: Remove references to non-existent directories and files. 2010-06-08 Dan Nicolaescu diff --git a/Makefile.in b/Makefile.in index 965fdd9c562..d80bd1c1936 100644 --- a/Makefile.in +++ b/Makefile.in @@ -580,6 +580,8 @@ install-arch-indep: mkdir info install-etc for f in `ls $$elt $$elt-[1-9] $$elt-[1-9][0-9] 2>/dev/null`; do \ ${INSTALL_DATA} $$f $(DESTDIR)${infodir}/$$f; \ chmod a+r $(DESTDIR)${infodir}/$$f; \ + [ -n "${GZIP_PROG}" ] && \ + ${GZIP_PROG} -9n $(DESTDIR)${infodir}/$$f; \ done; \ done); \ else true; fi