From c5e4612e72b1b2496b6a96836688a5a1bcbb1d8a Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Sun, 15 Jul 2018 22:32:49 +0200 Subject: [PATCH] bus/vmbus: fix build without libuuid 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 --- 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 bd18a71154..deee9dd109 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.20.1