1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

(${TIT}, clean): Use {TIT:.elc=.el} instead of shell command expansion.

This commit is contained in:
Eli Zaretskii 2000-10-07 18:40:14 +00:00
parent bf957d2ded
commit d151eec5d6

View File

@ -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