summaryrefslogtreecommitdiff
path: root/leim
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2009-08-29 19:43:34 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2009-08-29 19:43:34 +0000
commit71531a246cef4009b116ba36fc63f4674a47780a (patch)
treec5d869b369dbf937dfb4e08281d576733273e26e /leim
parent6b0d8c11cc15f2ca0970dfbe88841270fdff66e5 (diff)
downloademacs-71531a246cef4009b116ba36fc63f4674a47780a.tar.gz
(leim-list.el, install): Don't use -r to remove files.
Diffstat (limited to 'leim')
-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 @@
+2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * Makefile.in (leim-list.el, install): Don't use -r to remove files.
+
2009-08-25 Glenn Morris <rgm@gnu.org>
* 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}
echo "changed" > $@
leim-list.el: ${SUBDIRS} ${TIT-MISC} changed.tit changed.misc ${srcdir}/leim-ext.el
- rm -rf leim-list.el
+ rm -f leim-list.el
${RUN-EMACS} -l ${buildlisppath}/international/quail \
-f batch-byte-compile-if-not-done ${TIT-MISC:.elc=.el}
if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
@@ -227,7 +227,7 @@ install: all
${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \
else true; fi
if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
- rm -rf ${INSTALLDIR}/leim-list.el; \
+ rm -f ${INSTALLDIR}/leim-list.el; \
rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
echo "Copying leim files to ${INSTALLDIR} ..." ; \
if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \