From: Andrew Innes Date: Wed, 27 Mar 2002 23:20:07 +0000 (+0000) Subject: (bootstrap-clean-SH): Use for loop, instead of X-Git-Tag: ttn-vms-21-2-B4~15944 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a3599c3027d915a31513af6ff0f9fafe39f5482d;p=emacs.git (bootstrap-clean-SH): Use for loop, instead of relying on shell globbing. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f1e905ccb1a..235259692da 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2002-03-27 Andrew Innes + + * makefile.w32-in (bootstrap-clean-SH): Use for loop, instead of + relying on shell globbing. + 2002-03-27 Colin Walters * ibuffer.el (ibuffer-help-buffer-modes): New variable. diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 7c1964c42fc..db22753e577 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -273,7 +273,8 @@ bootstrap-clean-CMD: bootstrap-clean-SH: # if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi - -rm -f $(lisp)/*.elc $(lisp)/*/*.elc +# -rm -f $(lisp)/*.elc $(lisp)/*/*.elc + -for dir in . $(WINS); do rm -f $$dir/*.elc; done # Generate/update files for the bootstrap process.