aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2010-03-27 15:01:22 +0300
committerEli Zaretskii2010-03-27 15:01:22 +0300
commit31f191b3a2d314c41a1e48b51615fdfe3fe20260 (patch)
tree7e3995788e870f8a22e2dcbf3b698ea40e2063fd
parent2201e7e2be76f3b03746d530059c8544a26a1036 (diff)
downloademacs-31f191b3a2d314c41a1e48b51615fdfe3fe20260.tar.gz
emacs-31f191b3a2d314c41a1e48b51615fdfe3fe20260.zip
Enclose the argument of "-l" in quotes.
makefile.w32-in ($(TIT), $(MISC_DIC), leim-list.el): Enclose the argument of "-l" in $(ARGQUOTE), in case it includes blanks or other special characters.
-rw-r--r--leim/ChangeLog6
-rw-r--r--leim/makefile.w32-in15
2 files changed, 16 insertions, 5 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 6ea68248238..9dd41d3bafa 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,9 @@
12010-03-27 Eli Zaretskii <eliz@gnu.org>
2
3 * makefile.w32-in ($(TIT), $(MISC_DIC), leim-list.el): Enclose the
4 argument of "-l" in $(ARGQUOTE), in case it includes blanks or
5 other special characters.
6
12010-03-18 Glenn Morris <rgm@gnu.org> 72010-03-18 Glenn Morris <rgm@gnu.org>
2 8
3 * Makefile.in (maintainer-clean): Use bootstrap-clean. 9 * Makefile.in (maintainer-clean): Use bootstrap-clean.
diff --git a/leim/makefile.w32-in b/leim/makefile.w32-in
index c36e98af618..dbebc32602c 100644
--- a/leim/makefile.w32-in
+++ b/leim/makefile.w32-in
@@ -170,17 +170,21 @@ $(SUBDIRS):
170# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as 170# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
171# this can break with GNU Make 3.81 and later if sh.exe is used. 171# this can break with GNU Make 3.81 and later if sh.exe is used.
172$(TIT): 172$(TIT):
173 $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ 173 $(RUN_EMACS) -l \
174 $(ARGQUOTE)$(buildlisppath)/international/titdic-cnv$(ARGQUOTE) \
174 --eval $(ARGQUOTE)(batch-titdic-convert t)$(ARGQUOTE) \ 175 --eval $(ARGQUOTE)(batch-titdic-convert t)$(ARGQUOTE) \
175 -dir quail $(srcdir)/CXTERM-DIC 176 -dir quail $(srcdir)/CXTERM-DIC
176 $(RUN_EMACS) -l $(buildlisppath)/international/quail \ 177 $(RUN_EMACS) -l \
178 $(ARGQUOTE)$(buildlisppath)/international/quail$(ARGQUOTE) \
177 -f batch-byte-compile $(TIT:.elc=.el) 179 -f batch-byte-compile $(TIT:.elc=.el)
178 180
179# Rule to generate quail/*.el from MISC_DIC/*.tit. 181# Rule to generate quail/*.el from MISC_DIC/*.tit.
180$(MISC_DIC): 182$(MISC_DIC):
181 $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \ 183 $(RUN_EMACS) -l \
184 $(ARGQUOTE)$(buildlisppath)/international/titdic-cnv$(ARGQUOTE) \
182 -f batch-miscdic-convert -dir quail $(srcdir)/MISC-DIC 185 -f batch-miscdic-convert -dir quail $(srcdir)/MISC-DIC
183 $(RUN_EMACS) -l $(buildlisppath)/international/quail \ 186 $(RUN_EMACS) -l \
187 $(ARGQUOTE)$(buildlisppath)/international/quail$(ARGQUOTE) \
184 -f batch-byte-compile $(MISC_DIC:.elc=.el) 188 -f batch-byte-compile $(MISC_DIC:.elc=.el)
185 189
186# 190#
@@ -188,7 +192,8 @@ $(MISC_DIC):
188# this can break with GNU Make 3.81 and later if sh.exe is used. 192# this can break with GNU Make 3.81 and later if sh.exe is used.
189leim-list.el: $(SUBDIRS) $(WORLD) $(srcdir)/leim-ext.el 193leim-list.el: $(SUBDIRS) $(WORLD) $(srcdir)/leim-ext.el
190 - $(DEL) leim-list.el 194 - $(DEL) leim-list.el
191 $(RUN_EMACS) -l $(buildlisppath)/international/quail \ 195 $(RUN_EMACS) -l \
196 $(ARGQUOTE)$(buildlisppath)/international/quail$(ARGQUOTE) \
192 --eval $(ARGQUOTE)(update-leim-list-file $(DQUOTE).$(DQUOTE))$(ARGQUOTE) 197 --eval $(ARGQUOTE)(update-leim-list-file $(DQUOTE).$(DQUOTE))$(ARGQUOTE)
193 $(RUN_EMACS) --eval $(ARGQUOTE)(w32-append-code-lines $(DQUOTE)$@$(DQUOTE) $(DQUOTE)$(srcdir)/leim-ext.el$(DQUOTE))$(ARGQUOTE) 198 $(RUN_EMACS) --eval $(ARGQUOTE)(w32-append-code-lines $(DQUOTE)$@$(DQUOTE) $(DQUOTE)$(srcdir)/leim-ext.el$(DQUOTE))$(ARGQUOTE)
194 199