From: Richard M. Stallman Date: Thu, 24 Jul 1997 04:06:12 +0000 (+0000) Subject: (stamp-bytecomp): Fix shell conditional. X-Git-Tag: emacs-20.1~1016 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ecf38857f9959775d7baa4b8d064e1c55676f078;p=emacs.git (stamp-bytecomp): Fix shell conditional. (clean): Fix shell conditional. --- 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