diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-24 04:06:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-24 04:06:12 +0000 |
commit | ecf38857f9959775d7baa4b8d064e1c55676f078 (patch) | |
tree | 8f0a312ed6af69c78324da3a01497a447f8c536f /leim/Makefile.in | |
parent | 835b892a395f80fbf2e97bbf12fa52dbc78dec16 (diff) | |
download | emacs-ecf38857f9959775d7baa4b8d064e1c55676f078.tar.gz |
(stamp-bytecomp): Fix shell conditional.
(clean): Fix shell conditional.
Diffstat (limited to 'leim/Makefile.in')
-rw-r--r-- | leim/Makefile.in | 5 |
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 |