diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-05-01 12:28:41 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-05-01 12:28:41 -0700 |
commit | 0922c475915b41089fffab68f7012a530fe456e1 (patch) | |
tree | 994984ba600d5f05c7dc706b358b6540b81aa2eb /make-dist | |
parent | 2640d52e4e7873e41b0f0f1144177f84c345917e (diff) | |
download | emacs-0922c475915b41089fffab68f7012a530fe456e1.tar.gz |
* make-dist: Keep necessary restrictions on file access.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-dist b/make-dist index e1e62c895c7..b82a3cba9d2 100755 --- a/make-dist +++ b/make-dist @@ -42,8 +42,8 @@ LC_MESSAGES= LANG= export LANGUAGE LC_ALL LC_MESSAGES LANG -## Don't restrict access to any files. -umask 0 +## Remove unnecessary restrictions on file access. +umask 022 update=yes check=yes |