1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(bootstrap-clean-SH): Use for loop, instead of

relying on shell globbing.
This commit is contained in:
Andrew Innes 2002-03-27 23:20:07 +00:00
parent 193f8525da
commit a3599c3027
2 changed files with 7 additions and 1 deletions

View 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.

View 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.