forked from Github/emacs
(bootstrap, $(lisp)/mh-e/mh-loaddefs.el): Quote $(EMACS).
This commit is contained in:
parent
43c58260f6
commit
3152b1ebb0
2 changed files with 9 additions and 4 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2006-06-05 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el): Quote
|
||||
$(EMACS).
|
||||
|
||||
2006-06-05 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* faces.el (defined-colors): Doc fix.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue