From patchwork Sat Feb 14 18:13:27 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Wiles, Keith" X-Patchwork-Id: 3331 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id C7AF7B4F9; Sat, 14 Feb 2015 19:13:31 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id EEE4EB4DC for ; Sat, 14 Feb 2015 19:13:30 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga101.fm.intel.com with ESMTP; 14 Feb 2015 10:13:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,577,1418112000"; d="scan'208";a="454692300" Received: from jganesh-mobl1.amr.corp.intel.com ([10.254.16.126]) by FMSMGA003.fm.intel.com with ESMTP; 14 Feb 2015 09:58:39 -0800 Received: by jganesh-mobl1.amr.corp.intel.com (Postfix, from userid 506) id 46B861A4DA8E; Sat, 14 Feb 2015 12:13:27 -0600 (CST) From: Keith Wiles To: dev@dpdk.org Date: Sat, 14 Feb 2015 12:13:27 -0600 Message-Id: <1423937607-35845-1-git-send-email-keith.wiles@intel.com> X-Mailer: git-send-email 2.3.0 Subject: [dpdk-dev] [PATCH] Add Q variable to external builds to be quite X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Keith Wiles --- mk/rte.extvars.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mk/rte.extvars.mk b/mk/rte.extvars.mk index 3e5a990..83a5721 100644 --- a/mk/rte.extvars.mk +++ b/mk/rte.extvars.mk @@ -66,6 +66,10 @@ endif RTE_OUTPUT ?= $(RTE_SRCDIR)/build export RTE_OUTPUT +# define Q to '@' or not. $(Q) is used to prefix all shell commands to +# be executed silently. +Q=@ + # if we are building an external application, include SDK # configuration and include project configuration if any include $(RTE_SDK_BIN)/.config