aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Innes2001-05-18 12:06:38 +0000
committerAndrew Innes2001-05-18 12:06:38 +0000
commitc5bdb93d32a3c0fe0d790ac194ca1fa2aa71d967 (patch)
tree8f40eb6444a3c7a0ed8850d1111ad40d7149604d
parentec45fa106830d2ad28651e285c01f5b385f1d8de (diff)
downloademacs-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/ChangeLog8
-rw-r--r--lisp/makefile.w32-in11
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 @@
12001-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
12001-05-18 Simon Josefsson <simon@josefsson.org> 92001-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
170autoloads: loaddefs.el doit 170autoloads: 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
174subdirs.el: 179subdirs.el:
175 $(MAKE) $(MFLAGS) update-subdirs 180 $(MAKE) $(MFLAGS) update-subdirs
@@ -221,7 +226,7 @@ compile-files: subdirs.el compile-files-$(SHELLTYPE) doit
221compile-files-CMD: 226compile-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
226compile-files-SH: 231compile-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
266bootstrap-clean-CMD: 271bootstrap-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
270bootstrap-clean-SH: 275bootstrap-clean-SH:
271 if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi 276 if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi