diff options
| author | Andrew Innes | 2001-11-05 23:18:34 +0000 |
|---|---|---|
| committer | Andrew Innes | 2001-11-05 23:18:34 +0000 |
| commit | 5de7f0f75a1b269a5facc14f4e826b3736cf78dc (patch) | |
| tree | b6e9a78ef38fc1471639ae91edff733beb27a63f | |
| parent | f45320928a1a88df3fad4b4dca7761034547f9b7 (diff) | |
| download | emacs-5de7f0f75a1b269a5facc14f4e826b3736cf78dc.tar.gz emacs-5de7f0f75a1b269a5facc14f4e826b3736cf78dc.zip | |
(bootstrap-clean-CMD, bootstrap-clean-SH): Don't
attempt to remake autoloads before nuking .elc files.
| -rw-r--r-- | lisp/makefile.w32-in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index ab286edfa42..7ec9d2391fc 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -267,11 +267,11 @@ recompile: doit | |||
| 267 | bootstrap-clean: bootstrap-clean-$(SHELLTYPE) | 267 | bootstrap-clean: bootstrap-clean-$(SHELLTYPE) |
| 268 | 268 | ||
| 269 | bootstrap-clean-CMD: | 269 | bootstrap-clean-CMD: |
| 270 | if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads | 270 | # if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads |
| 271 | -for %f in (. $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g | 271 | -for %f in (. $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g |
| 272 | 272 | ||
| 273 | bootstrap-clean-SH: | 273 | bootstrap-clean-SH: |
| 274 | if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi | 274 | # if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi |
| 275 | -rm -f $(lisp)/*.elc $(lisp)/*/*.elc | 275 | -rm -f $(lisp)/*.elc $(lisp)/*/*.elc |
| 276 | 276 | ||
| 277 | # Generate/update files for the bootstrap process. | 277 | # Generate/update files for the bootstrap process. |