aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch/Makefile
diff options
context:
space:
mode:
authorCong Wang <amwang@redhat.com>2013-08-20 10:48:15 -0700
committerJesse Gross <jesse@nicira.com>2013-08-23 16:43:07 -0700
commit3fa34de67861abfc4846ccec886ca549d46ae56c (patch)
treeb043c4686c6b40283b6900e19d8907b94ac59f84 /net/openvswitch/Makefile
parentopenvswitch: Fix argument descriptions in vport.c. (diff)
downloadlinux-dev-3fa34de67861abfc4846ccec886ca549d46ae56c.tar.xz
linux-dev-3fa34de67861abfc4846ccec886ca549d46ae56c.zip
openvswitch: check CONFIG_OPENVSWITCH_GRE in makefile
Cc: Jesse Gross <jesse@nicira.com> Cc: Pravin B Shelar <pshelar@nicira.com> Signed-off-by: Cong Wang <amwang@redhat.com> Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'net/openvswitch/Makefile')
-rw-r--r--net/openvswitch/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/net/openvswitch/Makefile b/net/openvswitch/Makefile
index 82e4ee54a44b..ea36e99089af 100644
--- a/net/openvswitch/Makefile
+++ b/net/openvswitch/Makefile
@@ -10,10 +10,13 @@ openvswitch-y := \
dp_notify.o \
flow.o \
vport.o \
- vport-gre.o \
vport-internal_dev.o \
vport-netdev.o
ifneq ($(CONFIG_OPENVSWITCH_VXLAN),)
openvswitch-y += vport-vxlan.o
endif
+
+ifneq ($(CONFIG_OPENVSWITCH_GRE),)
+openvswitch-y += vport-gre.o
+endif