diff options
author | Eli Zaretskii <eliz@gnu.org> | 2006-12-23 02:05:29 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2006-12-23 02:05:29 +0000 |
commit | 512dd711be670c789ddd36a8f713765e3372657d (patch) | |
tree | b367ddfe1ce8d7a9ca07d4c186340e2c4a41272f /lisp/makefile.w32-in | |
parent | e2bb07db78ca0b47decfe67429498b8676e3ec1c (diff) | |
download | emacs-512dd711be670c789ddd36a8f713765e3372657d.tar.gz |
(bootstrap-clean): Run bootstrap-clean-$(SHELLTYPE) explicitly in a recursive
Make, not implicitly through prerequisites, since the latter is wrong under
parallel builds.
Diffstat (limited to 'lisp/makefile.w32-in')
-rw-r--r-- | lisp/makefile.w32-in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 058e71f5817..bbae20fd446 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -371,7 +371,12 @@ pre-mh-loaddefs.el-CMD: # sources only. # Need separate version for sh and native cmd.exe -bootstrap-clean: bootstrap-clean-$(SHELLTYPE) $(lisp)/loaddefs.el +# Note that bootstrap-clean-$(SHELLTYPE) copies ldefs-boot.el to loaddefs.el, +# and thus the almost-empty loaddefs.el crafted by the $(lisp)/loaddefs.el +# target can NOT be built _after_ bootstrap-clean-$(SHELLTYPE) does its +# thing, or else an empty loaddefs.el will overwrite the full one. +bootstrap-clean: $(lisp)/loaddefs.el + $(MAKE) $(MFLAGS) bootstrap-clean-$(SHELLTYPE) bootstrap-clean-CMD: # if exist "$(EMACS)" $(MAKE) $(MFLAGS) autoloads |