aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2009-08-29 19:43:34 +0000
committerStefan Monnier2009-08-29 19:43:34 +0000
commit7069bd161d7e3dc7c40d4cc86c4f6e140ae14e34 (patch)
tree139fde02347e811231707e653254228230e97ea0
parent2aa0e5bf920dee0e2bc7b07c11adaa45636c40f2 (diff)
downloademacs-7069bd161d7e3dc7c40d4cc86c4f6e140ae14e34.tar.gz
emacs-7069bd161d7e3dc7c40d4cc86c4f6e140ae14e34.zip
(leim-list.el, install): Don't use -r to remove files.
-rw-r--r--leim/ChangeLog4
-rw-r--r--leim/Makefile.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 885d92f894a..7fa15b13b16 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,7 @@
12009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * Makefile.in (leim-list.el, install): Don't use -r to remove files.
4
12009-08-25 Glenn Morris <rgm@gnu.org> 52009-08-25 Glenn Morris <rgm@gnu.org>
2 6
3 * quail/hangul.el (top-level): Don't require cl at run-time. 7 * quail/hangul.el (top-level): Don't require cl at run-time.
diff --git a/leim/Makefile.in b/leim/Makefile.in
index afa9d7c4448..f114be2b6dd 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -208,7 +208,7 @@ changed.misc: ${MISC-SOURCES}
208 echo "changed" > $@ 208 echo "changed" > $@
209 209
210leim-list.el: ${SUBDIRS} ${TIT-MISC} changed.tit changed.misc ${srcdir}/leim-ext.el 210leim-list.el: ${SUBDIRS} ${TIT-MISC} changed.tit changed.misc ${srcdir}/leim-ext.el
211 rm -rf leim-list.el 211 rm -f leim-list.el
212 ${RUN-EMACS} -l ${buildlisppath}/international/quail \ 212 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
213 -f batch-byte-compile-if-not-done ${TIT-MISC:.elc=.el} 213 -f batch-byte-compile-if-not-done ${TIT-MISC:.elc=.el}
214 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \ 214 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
@@ -227,7 +227,7 @@ install: all
227 ${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \ 227 ${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 -rf ${INSTALLDIR}/leim-list.el; \ 230 rm -f ${INSTALLDIR}/leim-list.el; \
231 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \ 231 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
232 echo "Copying leim files to ${INSTALLDIR} ..." ; \ 232 echo "Copying leim files to ${INSTALLDIR} ..." ; \
233 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \ 233 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \