diff options
| author | Eli Zaretskii | 2000-10-07 18:40:14 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-10-07 18:40:14 +0000 |
| commit | d151eec5d635e96ae116a8aad9b71e4950e45428 (patch) | |
| tree | 59b6d46383a0423fc64a3276884c5c4009022b84 | |
| parent | bf957d2ded9464d7e0c0a86886ad9414305ce922 (diff) | |
| download | emacs-d151eec5d635e96ae116a8aad9b71e4950e45428.tar.gz emacs-d151eec5d635e96ae116a8aad9b71e4950e45428.zip | |
(${TIT}, clean): Use {TIT:.elc=.el} instead of shell `command` expansion.
| -rw-r--r-- | leim/Makefile.in | 6 |
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}: | |||
| 150 | if [ -d quail ]; then true; else make quail; fi | 150 | if [ -d quail ]; then true; else make quail; fi |
| 151 | ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \ | 151 | ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \ |
| 152 | --eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC | 152 | --eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC |
| 153 | EL=`echo ${TIT} | sed 's/\.elc/\.el/g'`; \ | ||
| 154 | ${RUN-EMACS} -l ${buildlisppath}/international/quail \ | 153 | ${RUN-EMACS} -l ${buildlisppath}/international/quail \ |
| 155 | -f batch-byte-compile $$EL | 154 | -f batch-byte-compile ${TIT:.elc=.el} |
| 156 | 155 | ||
| 157 | leim-list.el: ${SUBDIRS} ${WORLD} | 156 | leim-list.el: ${SUBDIRS} ${WORLD} |
| 158 | if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \ | 157 | if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \ |
| @@ -182,8 +181,7 @@ install: all | |||
| 182 | -chmod -R a+r ${INSTALLDIR} | 181 | -chmod -R a+r ${INSTALLDIR} |
| 183 | 182 | ||
| 184 | clean mostlyclean: | 183 | clean mostlyclean: |
| 185 | EL=`echo ${TIT} | sed 's/\.elc/.el/g'`; \ | 184 | rm -f ${TIT} ${NON-TIT} ${WORLD} ${TIT:.elc=.el} leim-list.el |
| 186 | rm -f ${TIT} ${NON-TIT} ${WORLD} $$EL leim-list.el | ||
| 187 | 185 | ||
| 188 | distclean maintainer-clean: | 186 | distclean maintainer-clean: |
| 189 | if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi | 187 | if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi |