diff lisp/makefile.w32-in @ 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 d26b4aae50dd
children 73124278175b
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.