diff options
author | Andrew Innes <andrewi@gnu.org> | 2002-03-27 23:20:07 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2002-03-27 23:20:07 +0000 |
commit | a3599c3027d915a31513af6ff0f9fafe39f5482d (patch) | |
tree | 9918fbd7ea0a0cd27a3af47024c3bcbd03f90f16 /lisp/makefile.w32-in | |
parent | 193f8525da8e4b2e10e3311a45a45ce67b981ff4 (diff) | |
download | emacs-a3599c3027d915a31513af6ff0f9fafe39f5482d.tar.gz |
(bootstrap-clean-SH): Use for loop, instead of
relying on shell globbing.
Diffstat (limited to 'lisp/makefile.w32-in')
-rw-r--r-- | lisp/makefile.w32-in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 7c1964c42fc..db22753e577 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -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. |