diff options
| author | Glenn Morris | 2010-06-11 20:35:55 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-06-11 20:35:55 -0700 |
| commit | 5877cf48548c283d33af3a82d8b160c45a321c81 (patch) | |
| tree | a8d4e4175188ab3267b29bb7ef862371eaa8beb4 | |
| parent | 5fee75d49abccded929b80793d6fce1810effe86 (diff) | |
| download | emacs-5877cf48548c283d33af3a82d8b160c45a321c81.tar.gz emacs-5877cf48548c283d33af3a82d8b160c45a321c81.zip | |
* Makefile.in (install-arch-indep): Delete any old info .gz files first.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Makefile.in | 2 |
2 files changed, 6 insertions, 0 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-06-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install-arch-indep): Delete any old info .gz files first. | ||
| 4 | |||
| 1 | 2010-06-11 Glenn Morris <rgm@gnu.org> | 5 | 2010-06-11 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * configure.in (--without-compress-info): New option. | 7 | * configure.in (--without-compress-info): New option. |
diff --git a/Makefile.in b/Makefile.in index abb8d9d5005..d7e08a2328f 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -583,6 +583,7 @@ install-arch-indep: mkdir info install-etc | |||
| 583 | ${INSTALL_DATA} $$f $(DESTDIR)${infodir}/$$f; \ | 583 | ${INSTALL_DATA} $$f $(DESTDIR)${infodir}/$$f; \ |
| 584 | chmod a+r $(DESTDIR)${infodir}/$$f; \ | 584 | chmod a+r $(DESTDIR)${infodir}/$$f; \ |
| 585 | if [ -n "${GZIP_INFO}" ] && [ -n "${GZIP_PROG}" ]; then \ | 585 | if [ -n "${GZIP_INFO}" ] && [ -n "${GZIP_PROG}" ]; then \ |
| 586 | rm -f $(DESTDIR)${infodir}/$$f.gz; \ | ||
| 586 | ${GZIP_PROG} -9n $(DESTDIR)${infodir}/$$f; \ | 587 | ${GZIP_PROG} -9n $(DESTDIR)${infodir}/$$f; \ |
| 587 | else true; fi; \ | 588 | else true; fi; \ |
| 588 | done; \ | 589 | done; \ |
| @@ -606,6 +607,7 @@ install-arch-indep: mkdir info install-etc | |||
| 606 | ${INSTALL_DATA} ${mansrcdir}/$${page} $(DESTDIR)${man1dir}/$${page}; \ | 607 | ${INSTALL_DATA} ${mansrcdir}/$${page} $(DESTDIR)${man1dir}/$${page}; \ |
| 607 | chmod a+r $(DESTDIR)${man1dir}/$${page}; \ | 608 | chmod a+r $(DESTDIR)${man1dir}/$${page}; \ |
| 608 | if [ -n "${GZIP_INFO}" ] && [ -n "${GZIP_PROG}" ]; then \ | 609 | if [ -n "${GZIP_INFO}" ] && [ -n "${GZIP_PROG}" ]; then \ |
| 610 | rm -f $(DESTDIR)${man1dir}/$${page}.gz; \ | ||
| 609 | ${GZIP_PROG} -9n $(DESTDIR)${man1dir}/$${page}; \ | 611 | ${GZIP_PROG} -9n $(DESTDIR)${man1dir}/$${page}; \ |
| 610 | else true; fi ); \ | 612 | else true; fi ); \ |
| 611 | done | 613 | done |