diff options
author | Eli Zaretskii <eliz@gnu.org> | 2005-10-24 10:55:25 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2005-10-24 10:55:25 +0000 |
commit | 8129311330593d0492f6b8a51f56f344d707648f (patch) | |
tree | 352158587d786dfcbaf3b2b281bb7e5a6da6e8d3 | |
parent | 28e48287e710f9ec75eb0ab6a6ec011746346521 (diff) | |
download | emacs-8129311330593d0492f6b8a51f56f344d707648f.tar.gz |
(autoloads): Use "." instead of $(lisp) in the list of directories passed
to batch-update-autoloads. Add "." to the list of the echoed directories.
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/makefile.w32-in | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 08a213c5248..1ce55ddbcba 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,9 @@ 2005-10-24 Eli Zaretskii <eliz@gnu.org> + * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the + list of directories passed to batch-update-autoloads. Add "." to + the list of the echoed directories. + * pgg-def.el: * pgg-gpg.el: * pgg-parse.el: diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 059351cf4be..31e31442378 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -146,14 +146,18 @@ loaddefs.el-CMD: echo ;;; End:>> $@ echo ;;; loaddefs.el ends here>> $@ +# Use . instead of $(lisp) because $(lisp) is an absolute file name, +# including a drive letter and any leading directories, so the generated +# loaddefs.el will mention file names that on other machine reference +# possibly non-existent directories. autoloads: $(lisp)/loaddefs.el doit - @echo Directories: $(WINS) + @echo Directories: . $(WINS) $(emacs) -l autoload \ --eval $(ARGQUOTE)(setq find-file-hook nil \ find-file-suppress-same-file-warnings t \ generated-autoload-file \ $(DQUOTE)$(lisp)/loaddefs.el$(DQUOTE))$(ARGQUOTE) \ - -f batch-update-autoloads $(lisp) $(WINS) + -f batch-update-autoloads . $(WINS) $(lisp)/subdirs.el: $(MAKE) $(MFLAGS) update-subdirs |