aboutsummaryrefslogtreecommitdiffstats
path: root/leim
diff options
context:
space:
mode:
authorGlenn Morris2011-03-22 20:09:55 -0700
committerGlenn Morris2011-03-22 20:09:55 -0700
commit8cc1d5193337bef03f9525f2c017f6e70c4e64b9 (patch)
tree1ada81caa2a4d322a9ffdf3007ffbb4d0c080935 /leim
parent8ae17ff2bf7443379745356de33826b306dfefdf (diff)
downloademacs-8cc1d5193337bef03f9525f2c017f6e70c4e64b9.tar.gz
emacs-8cc1d5193337bef03f9525f2c017f6e70c4e64b9.zip
Replace mkinstalldirs with `install-sh -d', as automake recommends.
* Makefile.in (mkdir): Use `install-sh -d' instead of mkinstalldirs. (sync-from-gnulib): Don't sync mkinstalldirs. * make-dist: Don't distribute mkinstalldirs. * leim/Makefile.in (install): Use `install-sh -d' rather than mkinstalldirs. * lib-src/Makefile.in ($(DESTDIR)${archlibdir}): Use `install-sh -d' rather than mkinstalldirs. * configure.in, doc/emacs/Makefile.in: Update comments. * admin/notes/copyright: Remove mkinstalldirs.
Diffstat (limited to 'leim')
-rw-r--r--leim/ChangeLog4
-rw-r--r--leim/Makefile.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 7334fa991c9..08da90c2aa8 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,7 @@
12011-03-23 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (install): Use `install-sh -d' rather than mkinstalldirs.
4
12011-02-28 Juanma Barranquero <lekktu@gmail.com> 52011-02-28 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * quail/ethiopic.el ("ethiopic"): Fix tpo in docstring. 7 * quail/ethiopic.el ("ethiopic"): Fix tpo in docstring.
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 8c2baadf15f..531f0481f7a 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -220,7 +220,7 @@ MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done
220 220
221install: all 221install: all
222 if [ ! -d ${INSTALLDIR} ] ; then \ 222 if [ ! -d ${INSTALLDIR} ] ; then \
223 umask 022; ${srcdir}/../mkinstalldirs ${INSTALLDIR}; \ 223 umask 022; ${srcdir}/../install-sh -d ${INSTALLDIR}; \
224 else true; fi 224 else true; fi
225 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \ 225 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
226 rm -f ${INSTALLDIR}/leim-list.el; \ 226 rm -f ${INSTALLDIR}/leim-list.el; \