summaryrefslogtreecommitdiff
path: root/leim
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2000-10-07 18:40:14 +0000
committerEli Zaretskii <eliz@gnu.org>2000-10-07 18:40:14 +0000
commitd151eec5d635e96ae116a8aad9b71e4950e45428 (patch)
tree59b6d46383a0423fc64a3276884c5c4009022b84 /leim
parentbf957d2ded9464d7e0c0a86886ad9414305ce922 (diff)
downloademacs-d151eec5d635e96ae116a8aad9b71e4950e45428.tar.gz
(${TIT}, clean): Use {TIT:.elc=.el} instead of shell `command` expansion.
Diffstat (limited to 'leim')
-rw-r--r--leim/Makefile.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in
index b671663f24a..3630de00087 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -150,9 +150,8 @@ ${TIT}:
if [ -d quail ]; then true; else make quail; fi
${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
--eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC
- EL=`echo ${TIT} | sed 's/\.elc/\.el/g'`; \
${RUN-EMACS} -l ${buildlisppath}/international/quail \
- -f batch-byte-compile $$EL
+ -f batch-byte-compile ${TIT:.elc=.el}
leim-list.el: ${SUBDIRS} ${WORLD}
if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
@@ -182,8 +181,7 @@ install: all
-chmod -R a+r ${INSTALLDIR}
clean mostlyclean:
- EL=`echo ${TIT} | sed 's/\.elc/.el/g'`; \
- rm -f ${TIT} ${NON-TIT} ${WORLD} $$EL leim-list.el
+ rm -f ${TIT} ${NON-TIT} ${WORLD} ${TIT:.elc=.el} leim-list.el
distclean maintainer-clean:
if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi