aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-06-15 16:29:23 +0200
committerLars Ingebrigtsen2019-06-15 16:29:29 +0200
commit826e63e73d8682d9ae08fab6e64d155f4f95eb5b (patch)
tree171d2f0725a3f048c59d37bca3237314371345d2 /src
parentfcb3821ad506675bce264e53f50a06905adaa8e8 (diff)
downloademacs-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.in5
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)
779ifeq (@AM_V@,1)
779 @$(MAKE) -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c 780 @$(MAKE) -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c
781else
782 @$(MAKE) --no-print-directory\
783 -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c
784endif
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.