The dependency on libuuid is useless because the required code is embedded in EAL, see commit 6bc67c497a51 ("eal: add uuid API").
Fixes: 831dba47bd36 ("bus/vmbus: add Hyper-V virtual bus support") Signed-off-by: Thomas Monjalon <tho...@monjalon.net> --- drivers/bus/vmbus/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bus/vmbus/Makefile b/drivers/bus/vmbus/Makefile index bd18a7115..deee9dd10 100644 --- a/drivers/bus/vmbus/Makefile +++ b/drivers/bus/vmbus/Makefile @@ -22,7 +22,7 @@ CFLAGS += -I$(RTE_SDK)/lib/librte_eal/common CFLAGS += -I$(RTE_SDK)/lib/librte_eal/$(SYSTEM)app/eal LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring -LDLIBS += -lrte_ethdev -luuid +LDLIBS += -lrte_ethdev include $(RTE_SDK)/drivers/bus/vmbus/$(SYSTEM)/Makefile SRCS-$(CONFIG_RTE_LIBRTE_VMBUS) := $(addprefix $(SYSTEM)/,$(SRCS)) -- 2.17.1