From: Olivier Matz Date: Thu, 12 Oct 2017 16:04:20 +0000 (+0200) Subject: mempool/octeontx: fix dependency X-Git-Tag: spdx-start~1266 X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=4761b145b1e87f8521277e29e7718ab0384d0d62 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 --- 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