From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 101682BB0 for ; Wed, 23 Nov 2016 16:43:44 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP; 23 Nov 2016 07:43:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,538,1473145200"; d="scan'208";a="904776586" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.57]) ([10.237.220.57]) by orsmga003.jf.intel.com with ESMTP; 23 Nov 2016 07:43:35 -0800 To: matvejchikov@gmail.com, dev@dpdk.org References: From: Ferruh Yigit Message-ID: <18c98c3f-f104-f9a6-f043-5c0421542c51@intel.com> Date: Wed, 23 Nov 2016 15:43:34 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] examples: fix ip_pipeline makefile typo 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: , X-List-Received-Date: Wed, 23 Nov 2016 15:43:46 -0000 On 11/23/2016 12:56 PM, Ilya Matveychikov wrote: > Signed-off-by: Ilya V. Matveychikov > --- > examples/ip_pipeline/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/examples/ip_pipeline/Makefile b/examples/ip_pipeline/Makefile > index 5827117..6657237 100644 > --- a/examples/ip_pipeline/Makefile > +++ b/examples/ip_pipeline/Makefile > @@ -36,7 +36,7 @@ endif > # Default target, can be overridden by command line or environment > RTE_TARGET ?= x86_64-native-linuxapp-gcc > > -DIRS-(CONFIG_RTE_LIBRTE_PIPELINE) += pipeline > +DIRS-$(CONFIG_RTE_LIBRTE_PIPELINE) += pipeline No need to fix, this line can be removed completely. Because of: VPATH += $(SRCDIR)/pipeline and files handled in this makefile: SRCS-$(CONFIG_RTE_LIBRTE_PIPELINE) += pipeline_passthrough.c When you fix DIR-y, you also need to add a makefile to pipeline folder and update this makefile. I guess all those are not required. Just removing that line is easier J > > include $(RTE_SDK)/mk/rte.vars.mk > > -- > 2.5.5 >