diff options
Diffstat (limited to 'leim')
-rw-r--r-- | leim/ChangeLog | 4 | ||||
-rw-r--r-- | leim/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog index 426c679fe1f..c28e9472625 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog @@ -1,3 +1,7 @@ +2011-09-03 Paul Eggert <eggert@cs.ucla.edu> + + * Makefile.in (install): install-sh is now in build-aux (Bug#9169). + 2011-08-29 Stefan Monnier <monnier@iro.umontreal.ca> * quail/latin-ltx.el: Complete the super and subscript letters. diff --git a/leim/Makefile.in b/leim/Makefile.in index 87020616a57..23eaf215e2e 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -222,7 +222,7 @@ MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done install: all if [ ! -d ${INSTALLDIR} ] ; then \ - umask 022; ${srcdir}/../install-sh -d ${INSTALLDIR}; \ + umask 022; ${srcdir}/../build-aux/install-sh -d ${INSTALLDIR}; \ else true; fi if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \ rm -f ${INSTALLDIR}/leim-list.el; \ |