diff options
| author | Lars Ingebrigtsen | 2019-06-15 16:29:23 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-06-15 16:29:29 +0200 |
| commit | 826e63e73d8682d9ae08fab6e64d155f4f95eb5b (patch) | |
| tree | 171d2f0725a3f048c59d37bca3237314371345d2 /src | |
| parent | fcb3821ad506675bce264e53f50a06905adaa8e8 (diff) | |
| download | emacs-826e63e73d8682d9ae08fab6e64d155f4f95eb5b.tar.gz emacs-826e63e73d8682d9ae08fab6e64d155f4f95eb5b.zip | |
Avoid printing entering/leaving messages in second stage bootstrap
* src/Makefile.in (%.elc): Default to not printing the
entering/leaving lines when compiling .el files in the second
stage of bootstrapping Emacs. V=1 will output them.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index be769458d37..b425643c04b 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -776,7 +776,12 @@ tags: TAGS ../lisp/TAGS $(lwlibdir)/TAGS | |||
| 776 | ## bootstrap-emacs$(EXEEXT) as an order-only prerequisite. | 776 | ## bootstrap-emacs$(EXEEXT) as an order-only prerequisite. |
| 777 | 777 | ||
| 778 | %.elc: %.el | bootstrap-emacs$(EXEEXT) $(bootstrap_pdmp) | 778 | %.elc: %.el | bootstrap-emacs$(EXEEXT) $(bootstrap_pdmp) |
| 779 | ifeq (@AM_V@,1) | ||
| 779 | @$(MAKE) -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c | 780 | @$(MAKE) -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c |
| 781 | else | ||
| 782 | @$(MAKE) --no-print-directory\ | ||
| 783 | -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c | ||
| 784 | endif | ||
| 780 | 785 | ||
| 781 | ## VCSWITNESS points to the file that holds info about the current checkout. | 786 | ## VCSWITNESS points to the file that holds info about the current checkout. |
| 782 | ## We use it as a heuristic to decide when to rebuild loaddefs.el. | 787 | ## We use it as a heuristic to decide when to rebuild loaddefs.el. |