changeset 40753:5483ff487a13

(bootstrap-clean-CMD, bootstrap-clean-SH): Don't attempt to remake autoloads before nuking .elc files.
author Andrew Innes <andrewi@gnu.org>
date Mon, 05 Nov 2001 23:18:34 +0000
parents 8b5deb3bca03
children 37ab4ea03faa
files lisp/makefile.w32-in
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/makefile.w32-in	Mon Nov 05 23:15:36 2001 +0000
+++ b/lisp/makefile.w32-in	Mon Nov 05 23:18:34 2001 +0000
@@ -267,11 +267,11 @@
 bootstrap-clean: bootstrap-clean-$(SHELLTYPE)
 
 bootstrap-clean-CMD:
-	if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads
+#	if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads
 	-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
 
 # Generate/update files for the bootstrap process.