1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

* Makefile.in (install-arch-indep): Gzip the info files too.

This commit is contained in:
Glenn Morris 2010-06-09 22:34:38 -07:00
parent 64c60c2fed
commit d772827caf
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2010-06-10 Glenn Morris <rgm@gnu.org>
* 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 <dann@ics.uci.edu>

View File

@ -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