# HG changeset patch # User Andrew Innes # Date 1017271159 0 # Node ID 1c7d75d3c1757545bf085f17f4a94e29b52c2233 # Parent d4d47a5e5fd0302603b89e8845bc66f8a9a27fa5 (bootstrap-clean-SH): Use for loop, instead of relying on shell globbing. diff -r d4d47a5e5fd0 -r 1c7d75d3c175 lisp/makefile.w32-in --- 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.