diff options
| author | Eli Zaretskii | 2008-01-05 16:10:26 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-01-05 16:10:26 +0000 |
| commit | 0b534ed79ad62889cf2aec8dffcb4e3fe790c2ec (patch) | |
| tree | 01c77813318656928bdf2babfa501f21c2036b73 | |
| parent | 84b83f784229e23b0df4f32bd3294451edc81477 (diff) | |
| download | emacs-0b534ed79ad62889cf2aec8dffcb4e3fe790c2ec.tar.gz emacs-0b534ed79ad62889cf2aec8dffcb4e3fe790c2ec.zip | |
(custom-deps, finder-data): Depend on autoloads instead of loaddefs.el.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/Makefile.in | 8 |
2 files changed, 12 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 27f4252195c..037ec689fd0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,4 +1,9 @@ | |||
| 1 | 2007-01-05 Glenn Morris <rgm@gnu.org> | 1 | 2008-01-05 Eli Zaretskii <eliz@gnu.org> |
| 2 | |||
| 3 | * Makefile.in (custom-deps, finder-data): Depend on autoloads | ||
| 4 | instead of loaddefs.el. | ||
| 5 | |||
| 6 | 2008-01-05 Glenn Morris <rgm@gnu.org> | ||
| 2 | 7 | ||
| 3 | * progmodes/verilog-mode.el: Replace all instances of | 8 | * progmodes/verilog-mode.el: Replace all instances of |
| 4 | string-to-int with string-to-number, insert-string with insert, | 9 | string-to-int with string-to-number, insert-string with insert, |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 59a81d7799d..d59ba38db9e 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -87,12 +87,16 @@ doit: | |||
| 87 | 87 | ||
| 88 | $(lisp)/cus-load.el: | 88 | $(lisp)/cus-load.el: |
| 89 | touch $@ | 89 | touch $@ |
| 90 | custom-deps: $(lisp)/subdirs.el $(lisp)/loaddefs.el $(lisp)/cus-load.el doit | 90 | # Note that custom-deps and finder-data depend on autoloads rather |
| 91 | # than on loaddefs.el, so that autoloads does not run in parallel with | ||
| 92 | # them under "make -j", because that could delete loaddefs.el from | ||
| 93 | # under their feet. | ||
| 94 | custom-deps: $(lisp)/subdirs.el autoloads $(lisp)/cus-load.el doit | ||
| 91 | wd=$(lisp); $(setwins_almost); \ | 95 | wd=$(lisp); $(setwins_almost); \ |
| 92 | echo Directories: $$wins; \ | 96 | echo Directories: $$wins; \ |
| 93 | $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins | 97 | $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins |
| 94 | 98 | ||
| 95 | finder-data: $(lisp)/subdirs.el $(lisp)/loaddefs.el doit | 99 | finder-data: $(lisp)/subdirs.el autoloads doit |
| 96 | wd=$(lisp); $(setwins_almost); \ | 100 | wd=$(lisp); $(setwins_almost); \ |
| 97 | echo Directories: $$wins; \ | 101 | echo Directories: $$wins; \ |
| 98 | $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins | 102 | $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins |