diff options
author | Glenn Morris <rgm@gnu.org> | 2013-01-15 20:41:31 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-01-15 20:41:31 -0500 |
commit | 94898d72a3f26c17db362e8d81fd3b6d8fac582b (patch) | |
tree | 65a8684124d01e1b33884b9267e90648ee0c0d13 /Makefile.in | |
parent | 2e7a1892492d450d1fdf52cc704dd8f5d3a9cb18 (diff) | |
download | emacs-94898d72a3f26c17db362e8d81fd3b6d8fac582b.tar.gz |
* Makefile.in (install-arch-indep): Put back a chmod
that was removed 2012-05-19. (Bug#13430)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 2916aeccd70..9f1e9707d1d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -534,6 +534,7 @@ install-arch-indep: lisp leim install-info install-man ${INSTALL_ARCH_INDEP_EXTR tar -xvf - && cat > /dev/null) || exit 1; \ [ "$${dir}" != "${srcdir}/etc" ] || rm -f $${dest}/DOC* ; \ for subdir in `find $${dest} -type d -print` ; do \ + chmod a+rx $${subdir} ; \ rm -f $${subdir}/.gitignore ; \ rm -f $${subdir}/.arch-inventory ; \ rm -f $${subdir}/.DS_Store ; \ @@ -568,7 +569,9 @@ install-arch-indep: lisp leim install-info install-man ${INSTALL_ARCH_INDEP_EXTR done ) -chmod -R a+r $(DESTDIR)${datadir}/emacs/${version} ${COPYDESTS} -# The last chmod isn't needed at present. +## The above chmods are needed because "umask 022; tar ..." is not +## guaranteed to do the right thing; eg if we are root and tar is +## preserving source permissions. ## We install only the relevant DOC file if possible ## (ie DOC-${version}.buildnumber), otherwise DOC-${version}*. |