aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Varlese <marco.varlese@suse.com>2017-09-01 14:47:53 +0200
committerSergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>2017-09-05 08:50:16 +0000
commit839fa732c1a769d3aa9699192a0f06a969ddbda2 (patch)
treedb7775d0d06b770d6b99f98a1afd6b5a2284d555
parent484d406a19b9cde41e3ffaed6fac4e8c099d4e06 (diff)
The build system still builds the DPDK plugin when the optionv17.07.01
vpp_uses_dpdk is set to "no" in build-data/platforms/vpp.mk causing the build to fail. This patch addresses that issue. Change-Id: Icc1aaa508e730c9b8715119e1259e4c82f974048 Signed-off-by: Marco Varlese <marco.varlese@suse.com> (cherry picked from commit edfa2fddf84fe102e3c134c4df312638b3a00339)
-rw-r--r--build-data/packages/vpp.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/build-data/packages/vpp.mk b/build-data/packages/vpp.mk
index 170f99c52b4..a31ae7fea08 100644
--- a/build-data/packages/vpp.mk
+++ b/build-data/packages/vpp.mk
@@ -26,6 +26,8 @@ endif
ifeq ($($(PLATFORM)_uses_dpdk_mlx5_pmd),yes)
vpp_configure_args += --with-dpdk-mlx5-pmd
endif
+else
+vpp_configure_args += --disable-dpdk-plugin
endif
ifeq ($($(PLATFORM)_enable_tests),yes)