]> git.eshelyaron.com Git - emacs.git/commitdiff
(compile-files-CMD, bootstrap-clean-CMD): Use
authorAndrew Innes <andrewi@gnu.org>
Fri, 18 May 2001 12:06:38 +0000 (12:06 +0000)
committerAndrew Innes <andrewi@gnu.org>
Fri, 18 May 2001 12:06:38 +0000 (12:06 +0000)
. 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.

lisp/ChangeLog
lisp/makefile.w32-in

index fecf80fd56f6cda76f83b83cd9e4e81cf99a6791..b48e80918046f8a20ce48abaa77b7330e92403da 100644 (file)
@@ -1,3 +1,11 @@
+2001-05-18  Andrew Innes  <andrewi@gnu.org>
+
+       * makefile.w32-in (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.
+
 2001-05-18  Simon Josefsson  <simon@josefsson.org>
 
        * mail/smtpmail.el (maybe-append-domain): Renamed to
index ebda11617111bba21bbafed27cc246b10652a017..83b4cf8644ae7ae68731eca120d78a56de5e2176 100644 (file)
@@ -169,7 +169,12 @@ loaddefs.el:
 
 autoloads: loaddefs.el doit
        @echo Directories: $(WINS)
-       $(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)
+       $(emacs) -l autoload \
+               --eval $(ARGQUOTE)(setq find-file-hooks nil \
+                       find-file-suppress-same-file-warnings t \
+                       generated-autoload-file \
+                         $(DQUOTE)$(lisp)/loaddefs.el$(DQUOTE))$(ARGQUOTE) \
+               -f batch-update-autoloads $(lisp) $(WINS)
 
 subdirs.el:
        $(MAKE) $(MFLAGS) update-subdirs
@@ -221,7 +226,7 @@ compile-files: subdirs.el compile-files-$(SHELLTYPE) doit
 compile-files-CMD:
 #      -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g
        for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f
-       for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g
+       for %f in (. $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g
 
 compile-files-SH:
 #      for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
@@ -265,7 +270,7 @@ bootstrap-clean: bootstrap-clean-$(SHELLTYPE)
 
 bootstrap-clean-CMD:
        if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads
-       -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g
+       -for %f in (. $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g
 
 bootstrap-clean-SH:
        if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi