From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id e96a2cd4 for ; Tue, 17 Dec 2019 07:45:26 +0000 (UTC) Received: (qmail 13891 invoked by alias); 17 Dec 2019 07:45:07 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: List-Unsubscribe: X-Seq: 45065 Received: (qmail 7456 invoked by uid 1010); 17 Dec 2019 07:45:07 -0000 X-Qmail-Scanner-Diagnostics: from wout4-smtp.messagingengine.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.102.1/25663. spamassassin: 3.4.2. Clear:RC:0(64.147.123.20):SA:0(-1.9/5.0):. Processed in 1.472861 secs); 17 Dec 2019 07:45:07 -0000 X-Envelope-From: danielsh@apache.org X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: softfail (ns1.primenet.com.au: transitioning SPF record at amazonses.com does not designate 64.147.123.20 as permitted sender) X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrvddtiedguddufecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecuogfggedutddqvdejucdlgedtmdenucfjughrpe fhvffufffkofgjfhggtgfgsehtkeertdertdejnecuhfhrohhmpeffrghnihgvlhcuufhh rghhrghfuceouggrnhhivghlshhhsegrphgrtghhvgdrohhrgheqnecukfhppeejledrud ektddrheejrdduudelnecurfgrrhgrmhepmhgrihhlfhhrohhmpegurghnihgvlhhshhes rghprggthhgvrdhorhhgnecuvehluhhsthgvrhfuihiivgeptd X-ME-Proxy: From: Daniel Shahaf To: zsh-workers@zsh.org Subject: [PATCH 2/3] Make 'make -s' print nothing when it does nothing. Date: Tue, 17 Dec 2019 07:44:27 +0000 Message-Id: <20191217074428.3699-2-danielsh@apache.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20191217074428.3699-1-danielsh@apache.org> References: <20191217074428.3699-1-danielsh@apache.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- I omitted the line entirely since there's no easy way to omit it only for 'make -s'. The syntax of $(MAKEFLAGS) can take one of two different forms (it's actually standardized this way ☹) and it didn't seem worth the trouble to support both. Cheers, Daniel Src/Makefile.in | 1 - 1 file changed, 1 deletion(-) diff --git a/Src/Makefile.in b/Src/Makefile.in index 0577554f8..0fdbb73d2 100644 --- a/Src/Makefile.in +++ b/Src/Makefile.in @@ -94,7 +94,6 @@ zsh.res.o: $(sdir)/zsh.rc $(sdir)/zsh.ico stamp-modobjs: modobjs @if cmp -s stamp-modobjs.tmp stamp-modobjs; then \ rm -f stamp-modobjs.tmp; \ - echo "\`stamp-modobjs' is up to date."; \ else \ mv -f stamp-modobjs.tmp stamp-modobjs; \ echo "Updated \`stamp-modobjs'."; \