diff options
| author | Richard M. Stallman | 1997-07-24 04:06:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-24 04:06:12 +0000 |
| commit | ecf38857f9959775d7baa4b8d064e1c55676f078 (patch) | |
| tree | 8f0a312ed6af69c78324da3a01497a447f8c536f | |
| parent | 835b892a395f80fbf2e97bbf12fa52dbc78dec16 (diff) | |
| download | emacs-ecf38857f9959775d7baa4b8d064e1c55676f078.tar.gz emacs-ecf38857f9959775d7baa4b8d064e1c55676f078.zip | |
(stamp-bytecomp): Fix shell conditional.
(clean): Fix shell conditional.
| -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} | |||
| 143 | else \ | 143 | else \ |
| 144 | ${RUN-EMACS} -batch -l skkdic-cnv \ | 144 | ${RUN-EMACS} -batch -l skkdic-cnv \ |
| 145 | --eval '(byte-recompile-directory "skk" 0)'; \ | 145 | --eval '(byte-recompile-directory "skk" 0)'; \ |
| 146 | fi \ | 146 | fi ; \ |
| 147 | else true ; \ | ||
| 147 | fi | 148 | fi |
| 148 | touch stamp-bytecomp | 149 | touch stamp-bytecomp |
| 149 | 150 | ||
| @@ -275,7 +276,7 @@ clean: | |||
| 275 | # If this is not a dot-srcdir build, then remove the link made to skkdic.elc. | 276 | # If this is not a dot-srcdir build, then remove the link made to skkdic.elc. |
| 276 | if test ! -f Makefile.in; then \ | 277 | if test ! -f Makefile.in; then \ |
| 277 | rm -f skk/skkdic.elc; \ | 278 | rm -f skk/skkdic.elc; \ |
| 278 | else; true; fi | 279 | else true; fi |
| 279 | 280 | ||
| 280 | distclean maintainer-clean: clean | 281 | distclean maintainer-clean: clean |
| 281 | if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi | 282 | if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi |