From patchwork Sat Aug 29 00:40:13 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 32484 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 bilbo.ozlabs.org (Postfix) with ESMTPS id EC896B70C4 for ; Sat, 29 Aug 2009 10:43:22 +1000 (EST) Received: from localhost ([127.0.0.1]:34158 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MhC2F-0007Ec-R7 for incoming@patchwork.ozlabs.org; Fri, 28 Aug 2009 20:43:15 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MhC1n-0007EI-3c for qemu-devel@nongnu.org; Fri, 28 Aug 2009 20:42:47 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MhC1h-0007E6-HS for qemu-devel@nongnu.org; Fri, 28 Aug 2009 20:42:45 -0400 Received: from [199.232.76.173] (port=59743 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MhC1h-0007E3-EP for qemu-devel@nongnu.org; Fri, 28 Aug 2009 20:42:41 -0400 Received: from mx1.redhat.com ([209.132.183.28]:11755) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MhC1g-0004Xb-Uu for qemu-devel@nongnu.org; Fri, 28 Aug 2009 20:42:41 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n7T0gdQh015917; Fri, 28 Aug 2009 20:42:39 -0400 Received: from localhost.localdomain (vpn2-8-232.ams2.redhat.com [10.36.8.232]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n7T0gc3X005701; Fri, 28 Aug 2009 20:42:38 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Sat, 29 Aug 2009 02:40:13 +0200 Message-Id: <1251506413-28431-1-git-send-email-quintela@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: aliguori@us.ibm.com Subject: [Qemu-devel] [PATCH] call make with quite-command 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 On top of new config series. Remove the make directory printing. Signed-off-by: Juan Quintela --- Makefile | 3 ++- Makefile.target | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1befee0..236fb03 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ DOCS= endif SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS)) +SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) config-all-devices.mak: $(SUBDIR_DEVICES_MAK) $(call quiet-command,grep "=y$$" $(SUBDIR_DEVICES_MAK) | sort -u > $@," GEN $@") @@ -35,7 +36,7 @@ config-all-devices.mak: $(SUBDIR_DEVICES_MAK) include config-all-devices.mak build-all: config-host.h - $(MAKE) $(TOOLS) $(DOCS) recurse-all + $(call quiet-command, $(MAKE) $(SUBDIR_MAKEFLAGS) $(TOOLS) $(DOCS) recurse-all,) config-host.h: config-host.h-timestamp config-host.h-timestamp: config-host.mak diff --git a/Makefile.target b/Makefile.target index d244f7a..f1887e2 100644 --- a/Makefile.target +++ b/Makefile.target @@ -31,7 +31,7 @@ config-target.h: config-target.h-timestamp config-target.h-timestamp: config-target.mak all: config-target.h - $(MAKE) $(PROGS) + $(call quiet-command, $(MAKE) $(PROGS),) # Dummy command so that make thinks it has done something @true