diff options
| author | Andrew Innes | 2001-05-18 12:06:38 +0000 |
|---|---|---|
| committer | Andrew Innes | 2001-05-18 12:06:38 +0000 |
| commit | c5bdb93d32a3c0fe0d790ac194ca1fa2aa71d967 (patch) | |
| tree | 8f40eb6444a3c7a0ed8850d1111ad40d7149604d | |
| parent | ec45fa106830d2ad28651e285c01f5b385f1d8de (diff) | |
| download | emacs-c5bdb93d32a3c0fe0d790ac194ca1fa2aa71d967.tar.gz emacs-c5bdb93d32a3c0fe0d790ac194ca1fa2aa71d967.zip | |
(compile-files-CMD, bootstrap-clean-CMD): Use
. instead of absolute path for lisp dir, to avoid bug in W2K
cmd.exe's handling of FOR loops.
(autoloads): Set find-file-suppress-same-file-warnings to t to
avoid slew of spurious messages.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/makefile.w32-in | 11 |
2 files changed, 16 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fecf80fd56f..b48e8091804 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2001-05-18 Andrew Innes <andrewi@gnu.org> | ||
| 2 | |||
| 3 | * makefile.w32-in (compile-files-CMD, bootstrap-clean-CMD): Use | ||
| 4 | . instead of absolute path for lisp dir, to avoid bug in W2K | ||
| 5 | cmd.exe's handling of FOR loops. | ||
| 6 | (autoloads): Set find-file-suppress-same-file-warnings to t to | ||
| 7 | avoid slew of spurious messages. | ||
| 8 | |||
| 1 | 2001-05-18 Simon Josefsson <simon@josefsson.org> | 9 | 2001-05-18 Simon Josefsson <simon@josefsson.org> |
| 2 | 10 | ||
| 3 | * mail/smtpmail.el (maybe-append-domain): Renamed to | 11 | * mail/smtpmail.el (maybe-append-domain): Renamed to |
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index ebda1161711..83b4cf8644a 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -169,7 +169,12 @@ loaddefs.el: | |||
| 169 | 169 | ||
| 170 | autoloads: loaddefs.el doit | 170 | autoloads: loaddefs.el doit |
| 171 | @echo Directories: $(WINS) | 171 | @echo Directories: $(WINS) |
| 172 | $(emacs) -l autoload --eval $(ARGQUOTE)(setq find-file-hooks nil generated-autoload-file $(DQUOTE)$(lisp)/loaddefs.el$(DQUOTE))$(ARGQUOTE) -f batch-update-autoloads $(lisp) $(WINS) | 172 | $(emacs) -l autoload \ |
| 173 | --eval $(ARGQUOTE)(setq find-file-hooks nil \ | ||
| 174 | find-file-suppress-same-file-warnings t \ | ||
| 175 | generated-autoload-file \ | ||
| 176 | $(DQUOTE)$(lisp)/loaddefs.el$(DQUOTE))$(ARGQUOTE) \ | ||
| 177 | -f batch-update-autoloads $(lisp) $(WINS) | ||
| 173 | 178 | ||
| 174 | subdirs.el: | 179 | subdirs.el: |
| 175 | $(MAKE) $(MFLAGS) update-subdirs | 180 | $(MAKE) $(MFLAGS) update-subdirs |
| @@ -221,7 +226,7 @@ compile-files: subdirs.el compile-files-$(SHELLTYPE) doit | |||
| 221 | compile-files-CMD: | 226 | compile-files-CMD: |
| 222 | # -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g | 227 | # -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g |
| 223 | for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f | 228 | for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f |
| 224 | for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g | 229 | for %f in (. $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g |
| 225 | 230 | ||
| 226 | compile-files-SH: | 231 | compile-files-SH: |
| 227 | # for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done | 232 | # for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done |
| @@ -265,7 +270,7 @@ bootstrap-clean: bootstrap-clean-$(SHELLTYPE) | |||
| 265 | 270 | ||
| 266 | bootstrap-clean-CMD: | 271 | bootstrap-clean-CMD: |
| 267 | if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads | 272 | if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads |
| 268 | -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g | 273 | -for %f in (. $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g |
| 269 | 274 | ||
| 270 | bootstrap-clean-SH: | 275 | bootstrap-clean-SH: |
| 271 | if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi | 276 | if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi |