emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 826e63e: Avoid printing entering/leaving messages i


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 826e63e: Avoid printing entering/leaving messages in second stage bootstrap
Date: Sat, 15 Jun 2019 10:29:35 -0400 (EDT)

branch: master
commit 826e63e73d8682d9ae08fab6e64d155f4f95eb5b
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    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.
---
 src/Makefile.in | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/Makefile.in b/src/Makefile.in
index be76945..b425643 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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]