# HG changeset patch # User Eli Zaretskii # Date 970944014 0 # Node ID 589a3a21023fabefbc01c01f865e2618fb20a54d # Parent 949f454d6d76b9c7bb563f746a3234b40e76e6ce (${TIT}, clean): Use {TIT:.elc=.el} instead of shell `command` expansion. diff -r 949f454d6d76 -r 589a3a21023f leim/Makefile.in --- a/leim/Makefile.in Sat Oct 07 18:35:40 2000 +0000 +++ b/leim/Makefile.in Sat Oct 07 18:40:14 2000 +0000 @@ -150,9 +150,8 @@ 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 @@ -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