mk: remove fuse requirement for vhost-user
authorThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 2 Apr 2015 17:20:33 +0000 (19:20 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 3 Apr 2015 14:12:13 +0000 (16:12 +0200)
The fuse library is needed for vhost-cuse as required in commit 28a1ccca41bf.
The case vhost-user was forgotten for application linking.

Fixes: 28a1ccca41bf ("vhost: add build option for vhost-user")

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
mk/rte.app.mk

index 63a41e2..56886dc 100644 (file)
@@ -143,7 +143,7 @@ ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
 LDLIBS += -lpcap
 endif
 
-ifeq ($(CONFIG_RTE_LIBRTE_VHOST),y)
+ifeq ($(CONFIG_RTE_LIBRTE_VHOST)$(CONFIG_RTE_LIBRTE_VHOST_USER),yn)
 LDLIBS += -lfuse
 endif