From: Glenn Morris Date: Wed, 9 Sep 2009 02:32:48 +0000 (+0000) Subject: (install): Set umask to world-readable before creating directories. X-Git-Tag: emacs-pretest-23.1.90~1447 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a82a8b75191d3696a075e6a27ee6331fce1b3580;p=emacs.git (install): Set umask to world-readable before creating directories. --- 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; \