diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-27 04:58:07 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-27 04:58:07 +0000 |
commit | f45b7beb1c8acb07738993b4abe5e0878bd795e2 (patch) | |
tree | c2d4c8073a804fd93e0a75078d27d74ba11869c8 /leim | |
parent | 3985f85d5d2aa56c3a941d5c279bf46482c78cc0 (diff) | |
download | emacs-f45b7beb1c8acb07738993b4abe5e0878bd795e2.tar.gz |
(${TIT}): Fix shell conditional syntax.
Diffstat (limited to 'leim')
-rw-r--r-- | leim/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in index 1abc576e301..b2bb612f1cd 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -135,7 +135,7 @@ ${SUBDIRS}: # Rule to generate quail/*.el from CXTERM-DIC/*.tit. ${TIT}: - [ -d quail ] || mkdir quail + 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 ${RUN-EMACS} -l ${buildlisppath}/international/quail \ |