aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-09-09 02:32:48 +0000
committerGlenn Morris2009-09-09 02:32:48 +0000
commita82a8b75191d3696a075e6a27ee6331fce1b3580 (patch)
tree7fed861b6e031daf7a669432b0cbf13c864bb006
parentc5a139ca228a70d8750b6d7f3311386e100c1983 (diff)
downloademacs-a82a8b75191d3696a075e6a27ee6331fce1b3580.tar.gz
emacs-a82a8b75191d3696a075e6a27ee6331fce1b3580.zip
(install): Set umask to world-readable before creating directories.
-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 @@
12009-09-09 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (install): Set umask to world-readable before creating
4 directories.
5
12009-08-31 Juri Linkov <juri@jurta.org> 62009-08-31 Juri Linkov <juri@jurta.org>
2 7
3 * quail/ipa.el ("ipa"): Set `forget-last-selection' to nil. 8 * 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
224 224
225install: all 225install: all
226 if [ ! -d ${INSTALLDIR} ] ; then \ 226 if [ ! -d ${INSTALLDIR} ] ; then \
227 ${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \ 227 umask 022; ${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \
228 else true; fi 228 else true; fi
229 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \ 229 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
230 rm -f ${INSTALLDIR}/leim-list.el; \ 230 rm -f ${INSTALLDIR}/leim-list.el; \