emacs-devel
[Top][All Lists]
Advanced

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

Re: Make the compilation slightly less verbose?


From: Andreas Schwab
Subject: Re: Make the compilation slightly less verbose?
Date: Sat, 15 Jun 2019 16:25:31 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2.90 (gnu/linux)

On Jun 15 2019, Lars Ingebrigtsen <address@hidden> wrote:

> Eli Zaretskii <address@hidden> writes:
>
>> Please make the change be conditioned on the verbosity, i.e. I'd very
>> much like it if "make V=1" would still emit these messages.
>
> I seem to have almost completely successfully managed to suppress all my
> knowledge I may once have had of how autoconf works, but...  Does this
> look right?
>
> diff --git a/src/Makefile.in b/src/Makefile.in
> index be769458d3..b89a2f890e 100644
> --- a/src/Makefile.in
> +++ b/src/Makefile.in
> @@ -776,7 +776,12 @@ .PHONY:
>  ## bootstrap-emacs$(EXEEXT) as an order-only prerequisite.
>  
>  %.elc: %.el | bootstrap-emacs$(EXEEXT) $(bootstrap_pdmp)
> +ifeq (@AM_V@,)
> +     @$(MAKE) --no-print-directory\
> +             -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c
> +else
>       @$(MAKE) -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $<c
> +endif

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 =

Andreas.

-- 
Andreas Schwab, address@hidden
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
"And now for something completely different."



reply via email to

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