diff options
| author | Luc Teirlinck | 2005-08-17 01:58:07 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-08-17 01:58:07 +0000 |
| commit | 71d77b400b17fd10ea7c7351477d9bc3e7acd886 (patch) | |
| tree | 45ce7c74ce91920900f98a8cb4938712d3618002 | |
| parent | 1ee1d0eef959956ca2d2bf83aaf3fd1e84ef5d81 (diff) | |
| download | emacs-71d77b400b17fd10ea7c7351477d9bc3e7acd886.tar.gz emacs-71d77b400b17fd10ea7c7351477d9bc3e7acd886.zip | |
Expand comment about building loaddefs.el.
| -rw-r--r-- | lisp/Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index a7ef180b18e..b8501c5021d 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -218,10 +218,13 @@ $(lisp)/progmodes/cc-mode.elc: \ | |||
| 218 | # Build loaddefs.el to make sure it's up-to-date. If it's not, that | 218 | # Build loaddefs.el to make sure it's up-to-date. If it's not, that |
| 219 | # might lead to errors during the bootstrap because something fails to | 219 | # might lead to errors during the bootstrap because something fails to |
| 220 | # autoload as expected. If there is no emacs binary, then we can't | 220 | # autoload as expected. If there is no emacs binary, then we can't |
| 221 | # build autoloads yet. In that case we have to use ldefs-boot.el; | 221 | # build autoloads yet. In that case we have to use ldefs-boot.el. |
| 222 | # bootstrap should always work with ldefs-boot.el. (Because | 222 | # Bootstrap should always work with ldefs-boot.el. Therefore, |
| 223 | # loaddefs.el is an automatically generated file, we don't want to | 223 | # whenever a new autoload cookie gets added that is necessary during |
| 224 | # store it in the source repository). | 224 | # bootstrapping, ldefs-boot.el should be updated by overwriting it with |
| 225 | # an up-to-date copy of loaddefs.el that is uncorrupted by | ||
| 226 | # local changes. (Because loaddefs.el is an automatically generated | ||
| 227 | # file, we don't want to store it in the source repository). | ||
| 225 | 228 | ||
| 226 | bootstrap-prepare: | 229 | bootstrap-prepare: |
| 227 | if test -x $(EMACS); then \ | 230 | if test -x $(EMACS); then \ |