mempool/octeontx: fix dependency
authorOlivier Matz <olivier.matz@6wind.com>
Thu, 12 Oct 2017 16:04:20 +0000 (18:04 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 24 Oct 2017 00:14:54 +0000 (02:14 +0200)
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 <olivier.matz@6wind.com>
drivers/mempool/Makefile
drivers/mempool/octeontx/Makefile

index ce5d02c..20ad3ed 100644 (file)
@@ -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
index f2fa22b..5b2e1b8 100644 (file)
@@ -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