From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Andreas Schwab Newsgroups: gmane.emacs.devel Subject: Re: Make the compilation slightly less verbose? Date: Sat, 15 Jun 2019 16:25:31 +0200 Message-ID: <87y3237wo4.fsf@igel.home> References: <87y324duun.fsf@igel.home> <83y324vvsz.fsf@gnu.org> <20190614192849.GC23182@ACM> <83sgsbwfpt.fsf@gnu.org> <83lfy3wafz.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="48653"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2.90 (gnu/linux) Cc: acm@muc.de, Eli Zaretskii , emacs-devel@gnu.org To: Lars Ingebrigtsen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jun 15 16:25:51 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hc9ct-000CW4-70 for ged-emacs-devel@m.gmane.org; Sat, 15 Jun 2019 16:25:51 +0200 Original-Received: from localhost ([::1]:60826 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hc9cs-0005IK-9a for ged-emacs-devel@m.gmane.org; Sat, 15 Jun 2019 10:25:50 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:50825) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hc9cn-0005Ht-4U for emacs-devel@gnu.org; Sat, 15 Jun 2019 10:25:46 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hc9cm-0003Sj-5I for emacs-devel@gnu.org; Sat, 15 Jun 2019 10:25:45 -0400 Original-Received: from mail-out.m-online.net ([212.18.0.9]:51911) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hc9ci-0003PA-Kf; Sat, 15 Jun 2019 10:25:40 -0400 Original-Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 45R0BP3jJ1z1rBNc; Sat, 15 Jun 2019 16:25:33 +0200 (CEST) Original-Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 45R0BP3Mg5z1qqkq; Sat, 15 Jun 2019 16:25:33 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Original-Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id RWH-dQcJdn0K; Sat, 15 Jun 2019 16:25:32 +0200 (CEST) X-Auth-Info: YRh8lQvmIPZLFRIh88/fSsBFHCoXP1jIrZkM8g0aedrt09bCCOGkJX8vxQNt4cd6 Original-Received: from igel.home (ppp-46-244-181-62.dynamic.mnet-online.de [46.244.181.62]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Sat, 15 Jun 2019 16:25:32 +0200 (CEST) Original-Received: by igel.home (Postfix, from userid 1000) id 145542C0C9A; Sat, 15 Jun 2019 16:25:31 +0200 (CEST) X-Yow: I think my CAREER is RUINED!! In-Reply-To: (Lars Ingebrigtsen's message of "Sat, 15 Jun 2019 15:29:39 +0200") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 212.18.0.9 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:237687 Archived-At: On Jun 15 2019, Lars Ingebrigtsen wrote: > Eli Zaretskii 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=$< $ +else > @$(MAKE) -C ../lisp EMACS="$(bootstrap_exe)" THEFILE=$< $ +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, schwab@linux-m68k.org GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1 "And now for something completely different."