diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-15 16:29:23 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-15 16:29:29 +0200 |
commit | 826e63e73d8682d9ae08fab6e64d155f4f95eb5b (patch) | |
tree | 171d2f0725a3f048c59d37bca3237314371345d2 | |
parent | fcb3821ad506675bce264e53f50a06905adaa8e8 (diff) | |
download | emacs-826e63e73d8682d9ae08fab6e64d155f4f95eb5b.tar.gz |
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.
-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 ## bootstrap-emacs$(EXEEXT) as an order-only prerequisite. %.elc: %.el | bootstrap-emacs$(EXEEXT) $(bootstrap_pdmp) +ifeq (@AM_V@,1) @$(MAKE) -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c +else + @$(MAKE) --no-print-directory\ + -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c +endif ## VCSWITNESS points to the file that holds info about the current checkout. ## We use it as a heuristic to decide when to rebuild loaddefs.el. |