From: Richard M. Stallman Date: Sat, 27 Nov 1993 09:19:39 +0000 (+0000) Subject: (do-install): Use umask 022 in copying etc and lisp dirs. X-Git-Tag: emacs-19.34~10651 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5d9e58e85e8513b0ea5c1ca28681a63325fb0621;p=emacs.git (do-install): Use umask 022 in copying etc and lisp dirs. --- diff --git a/Makefile.in b/Makefile.in index 461c5bfae34..6597cf56697 100644 --- a/Makefile.in +++ b/Makefile.in @@ -268,7 +268,7 @@ do-install: mkdir [ -d $${dir} ] \ && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ && (echo "Copying $${dir}..." ; \ - (cd $${dir}; tar -cf - . )|(cd $${dest};umask 0; tar -xvf - ); \ + (cd $${dir}; tar -cf - . )|(cd $${dest};umask 022; tar -xvf - ); \ for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ rm -rf $${subdir}/RCS ; \ rm -rf $${subdir}/CVS ; \