]> git.droids-corp.org - dpdk.git/commitdiff
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 63a41e21c7d90466c9efd41f521a01a7f4760da9..56886dc9313512da44f27d94b4f46c06c1ae0517 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