From 4761b145b1e87f8521277e29e7718ab0384d0d62 Mon Sep 17 00:00:00 2001 From: Olivier Matz Date: Thu, 12 Oct 2017 18:04:20 +0200 Subject: [PATCH] mempool/octeontx: fix dependency 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") 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 ce5d02cf78..20ad3ed60d 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) +DEPDIRS-octeontx = $(core-libs) librte_mbuf include $(RTE_SDK)/mk/rte.subdir.mk diff --git a/drivers/mempool/octeontx/Makefile b/drivers/mempool/octeontx/Makefile index f2fa22b9b8..5b2e1b88c3 100644 --- a/drivers/mempool/octeontx/Makefile +++ b/drivers/mempool/octeontx/Makefile @@ -62,7 +62,4 @@ else CFLAGS_rte_mempool_octeontx.o += -Ofast endif -# this lib depends upon: -DEPDIRS-$(CONFIG_RTE_LIBRTE_OCTEONTX_MEMPOOL) += lib/librte_mbuf - include $(RTE_SDK)/mk/rte.lib.mk -- 2.20.1