From a82a8b75191d3696a075e6a27ee6331fce1b3580 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 9 Sep 2009 02:32:48 +0000 Subject: [PATCH] (install): Set umask to world-readable before creating directories. --- leim/ChangeLog | 5 +++++ leim/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * Makefile.in (install): Set umask to world-readable before creating + directories. + 2009-08-31 Juri Linkov * 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; \ -- 2.39.5