From patchwork Tue Oct 20 16:17:23 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 36475 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C2529B7B9B for ; Wed, 21 Oct 2009 03:19:49 +1100 (EST) Received: from localhost ([127.0.0.1]:51094 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N0HR3-0006w0-T1 for incoming@patchwork.ozlabs.org; Tue, 20 Oct 2009 12:19:45 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N0HOu-00057r-1o for qemu-devel@nongnu.org; Tue, 20 Oct 2009 12:17:32 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N0HOp-00053J-QQ for qemu-devel@nongnu.org; Tue, 20 Oct 2009 12:17:31 -0400 Received: from [199.232.76.173] (port=50332 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N0HOp-000538-ED for qemu-devel@nongnu.org; Tue, 20 Oct 2009 12:17:27 -0400 Received: from moutng.kundenserver.de ([212.227.17.8]:51316) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N0HOo-0002k1-Ux for qemu-devel@nongnu.org; Tue, 20 Oct 2009 12:17:27 -0400 Received: from flocke.weilnetz.de (p54ADFF83.dip.t-dialin.net [84.173.255.131]) by mrelayeu.kundenserver.de (node=mrbap1) with ESMTP (Nemesis) id 0LuJFv-1MHDhT2lPj-011eEh; Tue, 20 Oct 2009 18:17:25 +0200 Received: from stefan by flocke.weilnetz.de with local (Exim 4.69) (envelope-from ) id 1N0HOl-0001SC-Nq; Tue, 20 Oct 2009 18:17:23 +0200 From: Stefan Weil To: QEMU Developers Date: Tue, 20 Oct 2009 18:17:23 +0200 Message-Id: <1256055443-5563-1-git-send-email-weil@mail.berlios.de> X-Mailer: git-send-email 1.5.6.5 In-Reply-To: <1255516409-19166-1-git-send-email-quintela@redhat.com> References: <1255516409-19166-1-git-send-email-quintela@redhat.com> X-Provags-ID: V01U2FsdGVkX18WmS5fqc+9D1JsaSvfkK4q5EOAbTpKawf7qwZ WRBabpf5ENN4nksTLp2lnCJiC3PzPfE3MqDYNEuItXzQ6qil/o 7KMELJl7n1kUWoEKInwUkoNJii18B9NfSj7zqYT74v2CIpTmW8 bPQ== X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH] Makefile: Change make to be quiet again when doing nothing X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This patch makes make quiet again. There is already a similar patch from Juan Quintela, but maybe this shorter form is preferred. Signed-off-by: Stefan Weil --- Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e78a3d0..4d9908c 100644 --- a/Makefile +++ b/Makefile @@ -40,8 +40,8 @@ config-all-devices.mak: $(SUBDIR_DEVICES_MAK) -include config-all-devices.mak -build-all: config-host.h config-all-devices.h - $(call quiet-command, $(MAKE) $(SUBDIR_MAKEFLAGS) $(TOOLS) $(DOCS) recurse-all,) +build-all: config-host.h config-all-devices.h $(DOCS) $(TOOLS) + $(call quiet-command, $(MAKE) $(SUBDIR_MAKEFLAGS) recurse-all,) config-host.h: config-host.h-timestamp config-host.h-timestamp: config-host.mak