Mercurial > emacs
changeset 44192:1c7d75d3c175
(bootstrap-clean-SH): Use for loop, instead of
relying on shell globbing.
author | Andrew Innes <andrewi@gnu.org> |
---|---|
date | Wed, 27 Mar 2002 23:19:19 +0000 |
parents | d4d47a5e5fd0 |
children | f87a8b50aeff |
files | lisp/makefile.w32-in |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/makefile.w32-in Wed Mar 27 22:38:04 2002 +0000 +++ b/lisp/makefile.w32-in Wed Mar 27 23:19:19 2002 +0000 @@ -273,7 +273,8 @@ 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.