diff options
author | Glenn Morris <rgm@gnu.org> | 2014-07-12 10:53:29 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 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 |
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} [ -z "${GZIP_PROG}" ] || { \ echo "Compressing *.el ..." && \ cd "$(DESTDIR)${lispdir}" && \ - find . -name '*.elc' -exec $(SHELL) -c \ - '${GZIP_PROG} -9n `expr "$$1" : "\\(.*\\)c"`' dummy '{}' ';'; \ + for f in `find . -name "*.elc" -print | sed 's/.elc$$/.el/'`; do \ + ${GZIP_PROG} -9n "$$f"; \ + done; \ } -chmod -R a+r "$(DESTDIR)${datadir}/emacs/${version}" ${COPYDESTS} |