From 80267f68550eee9faee4f7e8db5d2c040028db8b Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Tue, 28 Mar 2017 10:23:33 +0100 Subject: [PATCH] net/xenvirt: fix missing dependency on cmdline lib Xenvirt driver uses the cmdline lib for parsing ether addresses so add it as a dependency to fix builds. Fixes: feb9f680cd2c ("mk: optimize directory dependencies") Signed-off-by: Bruce Richardson --- drivers/net/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 07d283b274..5b0bc34128 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile @@ -83,7 +83,7 @@ DEPDIRS-virtio = $(core-libs) DIRS-$(CONFIG_RTE_LIBRTE_VMXNET3_PMD) += vmxnet3 DEPDIRS-vmxnet3 = $(core-libs) DIRS-$(CONFIG_RTE_LIBRTE_PMD_XENVIRT) += xenvirt -DEPDIRS-xenvirt = $(core-libs) +DEPDIRS-xenvirt = $(core-libs) librte_cmdline ifeq ($(CONFIG_RTE_LIBRTE_VHOST),y) DIRS-$(CONFIG_RTE_LIBRTE_PMD_VHOST) += vhost -- 2.20.1