From 9a643edb2b74c5993465089aa23178cd9ad612cc Mon Sep 17 00:00:00 2001 From: Rahul R Shah Date: Wed, 6 Nov 2019 07:43:20 -0700 Subject: [PATCH] port: fix build dependency The port library should be built after eventdev library. Fixes: 5d92c4e592c4 ("port: add eventdev port type") Cc: stable@dpdk.org Signed-off-by: Rahul R Shah Tested-by: Ferruh Yigit Acked-by: Cristian Dumitrescu --- lib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Makefile b/lib/Makefile index 5d04ab9157..1ff00ba8c6 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -89,7 +89,7 @@ DIRS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR) += librte_distributor DEPDIRS-librte_distributor := librte_eal librte_mbuf librte_ethdev DIRS-$(CONFIG_RTE_LIBRTE_PORT) += librte_port DEPDIRS-librte_port := librte_eal librte_mempool librte_mbuf librte_ethdev -DEPDIRS-librte_port += librte_ip_frag librte_sched +DEPDIRS-librte_port += librte_ip_frag librte_sched librte_eventdev ifeq ($(CONFIG_RTE_LIBRTE_KNI),y) DEPDIRS-librte_port += librte_kni endif -- 2.20.1