summaryrefslogtreecommitdiff
path: root/leim
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-24 04:06:12 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-24 04:06:12 +0000
commit8296b716f64ee3b8eafe1f4413080b7b1257ecb6 (patch)
treeaa8968523e5c0ad25f94ce8640b026d4d1914b20 /leim
parent0a7145c4920099cf6103c88916281f514b439e9b (diff)
downloademacs-8296b716f64ee3b8eafe1f4413080b7b1257ecb6.tar.gz
(stamp-bytecomp): Fix shell conditional.
(clean): Fix shell conditional.
Diffstat (limited to 'leim')
-rw-r--r--leim/Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in
index f1ead5397f5..4d760190313 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -143,7 +143,8 @@ stamp-bytecomp: ${WORLD} ${EMACS}
else \
${RUN-EMACS} -batch -l skkdic-cnv \
--eval '(byte-recompile-directory "skk" 0)'; \
- fi \
+ fi ; \
+ else true ; \
fi
touch stamp-bytecomp
@@ -275,7 +276,7 @@ clean:
# If this is not a dot-srcdir build, then remove the link made to skkdic.elc.
if test ! -f Makefile.in; then \
rm -f skk/skkdic.elc; \
- else; true; fi
+ else true; fi
distclean maintainer-clean: clean
if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi