diff options
| author | Andrew Innes | 2002-03-27 23:20:07 +0000 |
|---|---|---|
| committer | Andrew Innes | 2002-03-27 23:20:07 +0000 |
| commit | a3599c3027d915a31513af6ff0f9fafe39f5482d (patch) | |
| tree | 9918fbd7ea0a0cd27a3af47024c3bcbd03f90f16 | |
| parent | 193f8525da8e4b2e10e3311a45a45ce67b981ff4 (diff) | |
| download | emacs-a3599c3027d915a31513af6ff0f9fafe39f5482d.tar.gz emacs-a3599c3027d915a31513af6ff0f9fafe39f5482d.zip | |
(bootstrap-clean-SH): Use for loop, instead of
relying on shell globbing.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/makefile.w32-in | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f1e905ccb1a..235259692da 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-03-27 Andrew Innes <andrewi@gnu.org> | ||
| 2 | |||
| 3 | * makefile.w32-in (bootstrap-clean-SH): Use for loop, instead of | ||
| 4 | relying on shell globbing. | ||
| 5 | |||
| 1 | 2002-03-27 Colin Walters <walters@debian.org> | 6 | 2002-03-27 Colin Walters <walters@debian.org> |
| 2 | 7 | ||
| 3 | * ibuffer.el (ibuffer-help-buffer-modes): New variable. | 8 | * ibuffer.el (ibuffer-help-buffer-modes): New variable. |
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: | |||
| 273 | 273 | ||
| 274 | bootstrap-clean-SH: | 274 | bootstrap-clean-SH: |
| 275 | # if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi | 275 | # if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi |
| 276 | -rm -f $(lisp)/*.elc $(lisp)/*/*.elc | 276 | # -rm -f $(lisp)/*.elc $(lisp)/*/*.elc |
| 277 | -for dir in . $(WINS); do rm -f $$dir/*.elc; done | ||
| 277 | 278 | ||
| 278 | # Generate/update files for the bootstrap process. | 279 | # Generate/update files for the bootstrap process. |
| 279 | 280 | ||