emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99755: Enclose the argument of "-l"


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99755: Enclose the argument of "-l" in quotes.
Date: Sat, 27 Mar 2010 15:01:22 +0300
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99755
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sat 2010-03-27 15:01:22 +0300
message:
  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.
modified:
  leim/ChangeLog
  leim/makefile.w32-in
=== modified file 'leim/ChangeLog'
--- a/leim/ChangeLog    2010-03-18 06:37:26 +0000
+++ b/leim/ChangeLog    2010-03-27 12:01:22 +0000
@@ -1,3 +1,9 @@
+2010-03-27  Eli Zaretskii  <address@hidden>
+
+       * 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.
+
 2010-03-18  Glenn Morris  <address@hidden>
 
        * Makefile.in (maintainer-clean): Use bootstrap-clean.

=== modified file 'leim/makefile.w32-in'
--- a/leim/makefile.w32-in      2010-01-13 08:35:10 +0000
+++ b/leim/makefile.w32-in      2010-03-27 12:01:22 +0000
@@ -170,17 +170,21 @@
 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
 #          this can break with GNU Make 3.81 and later if sh.exe is used.
 $(TIT):
-       $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \
+       $(RUN_EMACS) -l \
+           $(ARGQUOTE)$(buildlisppath)/international/titdic-cnv$(ARGQUOTE) \
            --eval $(ARGQUOTE)(batch-titdic-convert t)$(ARGQUOTE) \
            -dir quail $(srcdir)/CXTERM-DIC
-       $(RUN_EMACS)  -l $(buildlisppath)/international/quail \
+       $(RUN_EMACS)  -l \
+           $(ARGQUOTE)$(buildlisppath)/international/quail$(ARGQUOTE) \
            -f batch-byte-compile $(TIT:.elc=.el)
 
 # Rule to generate quail/*.el from MISC_DIC/*.tit.
 $(MISC_DIC):
-       $(RUN_EMACS) -l $(buildlisppath)/international/titdic-cnv \
+       $(RUN_EMACS) -l \
+           $(ARGQUOTE)$(buildlisppath)/international/titdic-cnv$(ARGQUOTE) \
            -f batch-miscdic-convert -dir quail $(srcdir)/MISC-DIC
-       $(RUN_EMACS)  -l $(buildlisppath)/international/quail \
+       $(RUN_EMACS)  -l \
+           $(ARGQUOTE)$(buildlisppath)/international/quail$(ARGQUOTE) \
            -f batch-byte-compile $(MISC_DIC:.elc=.el)
 
 #
@@ -188,7 +192,8 @@
 #          this can break with GNU Make 3.81 and later if sh.exe is used.
 leim-list.el: $(SUBDIRS) $(WORLD) $(srcdir)/leim-ext.el
        - $(DEL) leim-list.el
-       $(RUN_EMACS) -l $(buildlisppath)/international/quail \
+       $(RUN_EMACS) -l \
+           $(ARGQUOTE)$(buildlisppath)/international/quail$(ARGQUOTE) \
            --eval $(ARGQUOTE)(update-leim-list-file 
$(DQUOTE).$(DQUOTE))$(ARGQUOTE)
        $(RUN_EMACS) --eval $(ARGQUOTE)(w32-append-code-lines 
$(DQUOTE)address@hidden(DQUOTE) 
$(DQUOTE)$(srcdir)/leim-ext.el$(DQUOTE))$(ARGQUOTE)
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]