diff options
| author | Glenn Morris | 2009-09-09 02:32:48 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-09-09 02:32:48 +0000 |
| commit | a82a8b75191d3696a075e6a27ee6331fce1b3580 (patch) | |
| tree | 7fed861b6e031daf7a669432b0cbf13c864bb006 | |
| parent | c5a139ca228a70d8750b6d7f3311386e100c1983 (diff) | |
| download | emacs-a82a8b75191d3696a075e6a27ee6331fce1b3580.tar.gz emacs-a82a8b75191d3696a075e6a27ee6331fce1b3580.zip | |
(install): Set umask to world-readable before creating directories.
| -rw-r--r-- | leim/ChangeLog | 5 | ||||
| -rw-r--r-- | leim/Makefile.in | 2 |
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 @@ | |||
| 1 | 2009-09-09 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install): Set umask to world-readable before creating | ||
| 4 | directories. | ||
| 5 | |||
| 1 | 2009-08-31 Juri Linkov <juri@jurta.org> | 6 | 2009-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 | ||
| 225 | install: all | 225 | install: 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; \ |