diff options
author | Miles Bader <miles@gnu.org> | 2006-10-03 05:04:21 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2006-10-03 05:04:21 +0000 |
commit | f3bbbd11451643c49997116d639612ae434dcaa0 (patch) | |
tree | 6ce54c0dbf43746478357847960e9621fe3a5719 /leim/Makefile.in | |
parent | 84356ba74da100da043fea790d1253b2d92e9110 (diff) | |
parent | 670992917f2ee196a667797e4c3806d89c0f6d61 (diff) | |
download | emacs-f3bbbd11451643c49997116d639612ae434dcaa0.tar.gz |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 447-459)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 141-144)
- Merge from emacs--devo--0
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-115
Diffstat (limited to 'leim/Makefile.in')
-rw-r--r-- | leim/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in index 9459d6aae06..2b6ca8e9c15 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -217,8 +217,12 @@ leim-list.el: ${SUBDIRS} ${NON-TIT-MISC} changed.tit changed.misc ${srcdir}/leim install: all if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \ - rm -rf ${INSTALLDIR}/leim-list.el; \ - rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \ + if [ -d ${INSTALLDIR} ] ; then \ + rm -rf ${INSTALLDIR}/leim-list.el; \ + rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \ + else \ + ${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \ + fi; \ echo "Copying leim files to ${INSTALLDIR} ..." ; \ if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \ tar -chf - leim-list.el quail ja-dic \ |