diff options
| author | Eli Zaretskii | 2005-12-17 17:29:20 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-12-17 17:29:20 +0000 |
| commit | df6d09dd4068b0491228bcd074fdf5daa7ac6260 (patch) | |
| tree | 089a5a518021ed052ff318523849c2e88b606c45 | |
| parent | c3d49b7a3100df3ca8bf02b69c6322ab1fa6ccf1 (diff) | |
| download | emacs-df6d09dd4068b0491228bcd074fdf5daa7ac6260.tar.gz emacs-df6d09dd4068b0491228bcd074fdf5daa7ac6260.zip | |
($(TIT), leim-list.el): Warn that parts of commands enclosed in $(ARGQUOTE)s
should not be split between two lines, as that will break with GNU Make >3.80,
when sh.exe is used and arg quoting is with '..'.
| -rw-r--r-- | leim/makefile.w32-in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/leim/makefile.w32-in b/leim/makefile.w32-in index a311990ec3a..8b44ad350e7 100644 --- a/leim/makefile.w32-in +++ b/leim/makefile.w32-in | |||
| @@ -163,6 +163,9 @@ $(SUBDIRS): | |||
| 163 | .NO_PARALLEL: $(TIT) $(MISC_DIC) | 163 | .NO_PARALLEL: $(TIT) $(MISC_DIC) |
| 164 | 164 | ||
| 165 | # Rule to generate quail/*.el from CXTERM-DIC/*.tit. | 165 | # Rule to generate quail/*.el from CXTERM-DIC/*.tit. |
| 166 | # | ||
| 167 | # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as | ||
| 168 | # this can break with GNU Make 3.81 and later if sh.exe is used. | ||
| 166 | $(TIT): | 169 | $(TIT): |
| 167 | $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ | 170 | $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ |
| 168 | --eval $(ARGQUOTE)(batch-titdic-convert t)$(ARGQUOTE) \ | 171 | --eval $(ARGQUOTE)(batch-titdic-convert t)$(ARGQUOTE) \ |
| @@ -177,6 +180,9 @@ $(MISC_DIC): | |||
| 177 | $(RUN_EMACS) -l $(buildlisppath)/international/quail \ | 180 | $(RUN_EMACS) -l $(buildlisppath)/international/quail \ |
| 178 | -f batch-byte-compile $(MISC_DIC:.elc=.el) | 181 | -f batch-byte-compile $(MISC_DIC:.elc=.el) |
| 179 | 182 | ||
| 183 | # | ||
| 184 | # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as | ||
| 185 | # this can break with GNU Make 3.81 and later if sh.exe is used. | ||
| 180 | leim-list.el: $(SUBDIRS) $(WORLD) | 186 | leim-list.el: $(SUBDIRS) $(WORLD) |
| 181 | $(RUN_EMACS) -l $(buildlisppath)/international/quail \ | 187 | $(RUN_EMACS) -l $(buildlisppath)/international/quail \ |
| 182 | --eval $(ARGQUOTE)(update-leim-list-file $(DQUOTE).$(DQUOTE))$(ARGQUOTE) | 188 | --eval $(ARGQUOTE)(update-leim-list-file $(DQUOTE).$(DQUOTE))$(ARGQUOTE) |