diff options
author | Eli Zaretskii <eliz@gnu.org> | 2006-06-05 19:47:51 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2006-06-05 19:47:51 +0000 |
commit | 3152b1ebb0edaf68289e5d6f6354f4ecf55afe89 (patch) | |
tree | 2e2fb7c1334e4448e3b5946abb666251b32a5ee3 /lisp/makefile.w32-in | |
parent | 43c58260f6255240f0344774eca8fbd008eefa15 (diff) | |
download | emacs-3152b1ebb0edaf68289e5d6f6354f4ecf55afe89.tar.gz |
(bootstrap, $(lisp)/mh-e/mh-loaddefs.el): Quote $(EMACS).
Diffstat (limited to 'lisp/makefile.w32-in')
-rw-r--r-- | lisp/makefile.w32-in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 16c2ae15441..6c5a68d9ec7 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -320,7 +320,7 @@ $(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC) $(MAKE) $(MFLAGS) pre-mh-loaddefs.el-$(SHELLTYPE) cp pre-mh-loaddefs.el-$(SHELLTYPE) $@ rm pre-mh-loaddefs.el-$(SHELLTYPE) - $(EMACS) $(EMACSOPT) \ + "$(EMACS)" $(EMACSOPT) \ -l autoload \ --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \ --eval "(setq find-file-suppress-same-file-warnings t)" \ @@ -381,12 +381,12 @@ pre-mh-loaddefs.el-CMD: bootstrap-clean: bootstrap-clean-$(SHELLTYPE) $(lisp)/loaddefs.el bootstrap-clean-CMD: -# if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads +# if exist "$(EMACS)" $(MAKE) $(MFLAGS) autoloads cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el -for %%f in (. $(WINS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g bootstrap-clean-SH: -# if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi +# if test -f "$(EMACS)"; then $(MAKE) $(MFLAGS) autoloads; fi # -rm -f $(lisp)/*.elc $(lisp)/*/*.elc cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el -for dir in . $(WINS); do rm -f $$dir/*.elc; done @@ -396,7 +396,7 @@ bootstrap-clean-SH: # it will not be mistaken for an installed binary. bootstrap: update-subdirs autoloads mh-autoloads compile finder-data custom-deps - - $(DEL) $(EMACS) + - $(DEL) "$(EMACS)" # # Assuming INSTALL_DIR is defined, copy the elisp files to it |