bus/vmbus: fix build without libuuid
authorThomas Monjalon <thomas@monjalon.net>
Sun, 15 Jul 2018 20:32:49 +0000 (22:32 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 15 Jul 2018 21:41:58 +0000 (23:41 +0200)
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 <thomas@monjalon.net>
drivers/bus/vmbus/Makefile

index bd18a71..deee9dd 100644 (file)
@@ -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))