diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-11-27 09:19:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-11-27 09:19:39 +0000 |
commit | 664f76775d8e86eecc18d507bfb2ffed752a79ae (patch) | |
tree | 56a3b4feb257afd6a2a5d5cb67325bb7cdd16924 /Makefile.in | |
parent | 65b22a8ffd2747931b75e07f3e2389e820c0e851 (diff) | |
download | emacs-664f76775d8e86eecc18d507bfb2ffed752a79ae.tar.gz |
(do-install): Use umask 022 in copying etc and lisp dirs.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 ; \ |