diff options
| author | Glenn Morris | 2014-07-12 10:53:29 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-07-12 10:53:29 -0700 |
| commit | b39c4d7b33952e0125fbefbcb3d9f528b6570f40 (patch) | |
| tree | 17fd0630dacfe29b0c2486b9f5c923293e872a70 /Makefile.in | |
| parent | 2a0bae50e3611a6bd2d584f7a85677b74f1aa71b (diff) | |
| parent | fb02552638b0c653bfc3d269d879fdffba37bd31 (diff) | |
| download | emacs-b39c4d7b33952e0125fbefbcb3d9f528b6570f40.tar.gz emacs-b39c4d7b33952e0125fbefbcb3d9f528b6570f40.zip | |
Merge from emacs-24; up to 2014-06-22T05:00:14Z!dmantipov@yandex.ru
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 0fd9f980ca9..6b24147c8d3 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -594,8 +594,9 @@ install-arch-indep: lisp install-info install-man ${INSTALL_ARCH_INDEP_EXTRA} | |||
| 594 | [ -z "${GZIP_PROG}" ] || { \ | 594 | [ -z "${GZIP_PROG}" ] || { \ |
| 595 | echo "Compressing *.el ..." && \ | 595 | echo "Compressing *.el ..." && \ |
| 596 | cd "$(DESTDIR)${lispdir}" && \ | 596 | cd "$(DESTDIR)${lispdir}" && \ |
| 597 | find . -name '*.elc' -exec $(SHELL) -c \ | 597 | for f in `find . -name "*.elc" -print | sed 's/.elc$$/.el/'`; do \ |
| 598 | '${GZIP_PROG} -9n `expr "$$1" : "\\(.*\\)c"`' dummy '{}' ';'; \ | 598 | ${GZIP_PROG} -9n "$$f"; \ |
| 599 | done; \ | ||
| 599 | } | 600 | } |
| 600 | -chmod -R a+r "$(DESTDIR)${datadir}/emacs/${version}" ${COPYDESTS} | 601 | -chmod -R a+r "$(DESTDIR)${datadir}/emacs/${version}" ${COPYDESTS} |
| 601 | 602 | ||