From 18fe5c1cf52662bf8877c8a3bec9e2aeb9876e5f Mon Sep 17 00:00:00 2001 From: Nipun Gupta Date: Mon, 23 Oct 2017 18:07:04 +0530 Subject: [PATCH] drivers: add net as dependency for event drivers With the introduction of eventdev-ethdev RX adapter support in event device, some of the event device will have dependency on their respective ethernet drivers. This patch adds the net as a dependency for eventdevs. Signed-off-by: Nipun Gupta Acked-by: Jerin Jacob --- drivers/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/Makefile b/drivers/Makefile index 0467250aab..db0cd76ee7 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -39,6 +39,6 @@ DEPDIRS-net := bus mempool DIRS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += crypto DEPDIRS-crypto := bus mempool DIRS-$(CONFIG_RTE_LIBRTE_EVENTDEV) += event -DEPDIRS-event := bus mempool +DEPDIRS-event := bus mempool net include $(RTE_SDK)/mk/rte.subdir.mk -- 2.20.1