summaryrefslogtreecommitdiff
path: root/leim
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-09-09 02:32:48 +0000
committerGlenn Morris <rgm@gnu.org>2009-09-09 02:32:48 +0000
commita82a8b75191d3696a075e6a27ee6331fce1b3580 (patch)
tree7fed861b6e031daf7a669432b0cbf13c864bb006 /leim
parentc5a139ca228a70d8750b6d7f3311386e100c1983 (diff)
downloademacs-a82a8b75191d3696a075e6a27ee6331fce1b3580.tar.gz
(install): Set umask to world-readable before creating directories.
Diffstat (limited to 'leim')
-rw-r--r--leim/ChangeLog5
-rw-r--r--leim/Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index b1d7cd857c8..e217e6a1724 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-09 Glenn Morris <rgm@gnu.org>
+
+ * Makefile.in (install): Set umask to world-readable before creating
+ directories.
+
2009-08-31 Juri Linkov <juri@jurta.org>
* quail/ipa.el ("ipa"): Set `forget-last-selection' to nil.
diff --git a/leim/Makefile.in b/leim/Makefile.in
index f114be2b6dd..90698d7f169 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -224,7 +224,7 @@ MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done
install: all
if [ ! -d ${INSTALLDIR} ] ; then \
- ${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \
+ umask 022; ${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \
else true; fi
if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
rm -f ${INSTALLDIR}/leim-list.el; \