summaryrefslogtreecommitdiff
path: root/leim/Makefile.in
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2011-03-22 20:09:55 -0700
committerGlenn Morris <rgm@gnu.org>2011-03-22 20:09:55 -0700
commit8cc1d5193337bef03f9525f2c017f6e70c4e64b9 (patch)
tree1ada81caa2a4d322a9ffdf3007ffbb4d0c080935 /leim/Makefile.in
parent8ae17ff2bf7443379745356de33826b306dfefdf (diff)
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/Makefile.in')
-rw-r--r--leim/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 8c2baadf15..531f0481f7 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
install: all
if [ ! -d ${INSTALLDIR} ] ; then \
- umask 022; ${srcdir}/../mkinstalldirs ${INSTALLDIR}; \
+ umask 022; ${srcdir}/../install-sh -d ${INSTALLDIR}; \
else true; fi
if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
rm -f ${INSTALLDIR}/leim-list.el; \