emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master fd9cff0: Fix up the --no-print-directory changes in


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master fd9cff0: Fix up the --no-print-directory changes in src/Makefile.in
Date: Sun, 16 Jun 2019 18:34:05 -0400 (EDT)

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

    Fix up the --no-print-directory changes in src/Makefile.in
    
    * src/Makefile.in (AM_V_NO_PD): New macro written by Andreas
    Schwab that can be either --no-print-directory or "".
    (%.elc): Use it instead if the if statement.
---
 src/Makefile.in | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/src/Makefile.in b/src/Makefile.in
index b425643..0e3efb3 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -360,6 +360,11 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
 am__v_at_0 = @
 am__v_at_1 =
 
+AM_V_NO_PD = $(am__v_NO_PD_@AM_V@)
+am__v_NO_PD_ = $(am__v_NO_PD_@AM_DEFAULT_V@)
+am__v_NO_PD_0 = --no-print-directory
+am__v_NO_PD_1 =
+
 bootstrap_exe = ../src/bootstrap-emacs$(EXEEXT)
 ifeq ($(DUMPING),pdumper)
 bootstrap_pdmp := bootstrap-emacs.pdmp # Keep in sync with loadup.el
@@ -776,12 +781,8 @@ 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
+       @$(MAKE) $(AM_V_NO_PD) -C ../lisp EMACS="$(bootstrap_exe)"\
+               THEFILE=$< $<c
 
 ## 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]