From patchwork Thu Oct 12 16:04:20 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olivier Matz X-Patchwork-Id: 30309 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5C14C1B5FE; Thu, 12 Oct 2017 18:04:51 +0200 (CEST) Received: from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com [62.23.145.76]) by dpdk.org (Postfix) with ESMTP id 8E3171B5DF; Thu, 12 Oct 2017 18:04:47 +0200 (CEST) Received: from glumotte.dev.6wind.com (unknown [10.16.0.195]) by proxy.6wind.com (Postfix) with ESMTP id 24243EE002; Thu, 12 Oct 2017 17:59:24 +0200 (CEST) From: Olivier Matz To: thomas@monjalon.net Cc: gage.eads@intel.com, santosh.shukla@caviumnetworks.com, bruce.richardson@intel.com, jerin.jacob@caviumnetworks.com, dev@dpdk.org, stable@dpdk.org Date: Thu, 12 Oct 2017 18:04:20 +0200 Message-Id: <20171012160421.8337-3-olivier.matz@6wind.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20171012160421.8337-1-olivier.matz@6wind.com> References: <20171005125017.GA12160@bricha3-MOBL3.ger.corp.intel.com> <20171012160421.8337-1-olivier.matz@6wind.com> Subject: [dpdk-dev] [PATCH 2/3] mempool/octeontx: fix dependency X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The syntax "DEPDIRS-y = ..." is deprecated since commit feb9f680cd2c ("mk: optimize directory dependencies"). Replace it with the new style. Fixes: 8700239f7767 ("mempool/octeontx: add build and log infrastructure") Cc: stable@dpdk.org Signed-off-by: Olivier Matz --- drivers/mempool/Makefile | 2 +- drivers/mempool/octeontx/Makefile | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/mempool/Makefile b/drivers/mempool/Makefile index 18cbaa293..435b8fc31 100644 --- a/drivers/mempool/Makefile +++ b/drivers/mempool/Makefile @@ -41,6 +41,6 @@ DEPDIRS-ring = $(core-libs) DIRS-$(CONFIG_RTE_DRIVER_MEMPOOL_STACK) += stack DEPDIRS-stack = $(core-libs) DIRS-$(CONFIG_RTE_LIBRTE_OCTEONTX_MEMPOOL) += octeontx -DEPDIRS-octeontx = $(core-libs) librte_pmd_octeontx_ssovf +DEPDIRS-octeontx = $(core-libs) librte_mbuf librte_pmd_octeontx_ssovf include $(RTE_SDK)/mk/rte.subdir.mk diff --git a/drivers/mempool/octeontx/Makefile b/drivers/mempool/octeontx/Makefile index 0b2043842..16e215092 100644 --- a/drivers/mempool/octeontx/Makefile +++ b/drivers/mempool/octeontx/Makefile @@ -66,9 +66,6 @@ else CFLAGS_rte_mempool_octeontx.o += -Ofast endif -# this lib depends upon: -DEPDIRS-$(CONFIG_RTE_LIBRTE_OCTEONTX_MEMPOOL) += lib/librte_mbuf - LDLIBS += -lrte_pmd_octeontx_ssovf include $(RTE_SDK)/mk/rte.lib.mk