]> git.eshelyaron.com Git - emacs.git/commitdiff
(bootstrap-clean-SH): Use for loop, instead of
authorAndrew Innes <andrewi@gnu.org>
Wed, 27 Mar 2002 23:20:07 +0000 (23:20 +0000)
committerAndrew Innes <andrewi@gnu.org>
Wed, 27 Mar 2002 23:20:07 +0000 (23:20 +0000)
relying on shell globbing.

lisp/ChangeLog
lisp/makefile.w32-in

index f1e905ccb1a82aa0b258497119610ce112e3bb92..235259692da6b751b6a3265909b9830451802d86 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-27  Andrew Innes  <andrewi@gnu.org>
+
+       * makefile.w32-in (bootstrap-clean-SH): Use for loop, instead of
+       relying on shell globbing.
+
 2002-03-27  Colin Walters  <walters@debian.org>
 
        * ibuffer.el (ibuffer-help-buffer-modes): New variable.
index 7c1964c42fc423ade76665f05f36920ade06796d..db22753e5774dd375371c27481e8c96ea3267533 100644 (file)
@@ -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.