aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2016-02-27 00:12:55 +0100
committerDamjan Marion <damarion@cisco.com>2016-02-27 00:13:18 +0100
commit802c7fae4d3376440eda31973ddac6770c7565c3 (patch)
tree141f2fceff89bf8bc32c83a7ec64287ddac8d633
parentd56a6f59e99b7adec6742cd25f0d84bacf594537 (diff)
Invert matching logic for *_uses_dpdk in build-data/packages/*.mk
Change-Id: If07a74afd92196c035d720cedaac36493a09e400 Signed-off-by: Damjan Marion <damarion@cisco.com>
-rw-r--r--build-data/packages/vlib.mk2
-rw-r--r--build-data/packages/vnet.mk2
-rw-r--r--build-data/packages/vpp.mk2
3 files changed, 3 insertions, 3 deletions
diff --git a/build-data/packages/vlib.mk b/build-data/packages/vlib.mk
index 8b72b602..9c361282 100644
--- a/build-data/packages/vlib.mk
+++ b/build-data/packages/vlib.mk
@@ -3,7 +3,7 @@ vlib_configure_depend = vppinfra-install
vlib_CPPFLAGS = $(call installed_includes_fn, vppinfra)
vlib_LDFLAGS = $(call installed_libs_fn, vppinfra)
-ifeq ($($(PLATFORM)_uses_dpdk),yes)
+ifneq ($($(PLATFORM)_uses_dpdk),no)
vlib_configure_depend += dpdk-install
vlib_configure_args += --with-dpdk
vlib_CPPFLAGS += $(call installed_includes_fn, dpdk)
diff --git a/build-data/packages/vnet.mk b/build-data/packages/vnet.mk
index ca3523cc..0486b4e8 100644
--- a/build-data/packages/vnet.mk
+++ b/build-data/packages/vnet.mk
@@ -21,7 +21,7 @@ vnet_LDFLAGS = $(call installed_libs_fn, \
# Platform dependent configure flags
vnet_configure_args += $(vnet_configure_args_$(PLATFORM))
-ifeq ($($(PLATFORM)_uses_dpdk),yes)
+ifneq ($($(PLATFORM)_uses_dpdk),no)
vnet_configure_depend += dpdk-install
vnet_CPPFLAGS += $(call installed_includes_fn, dpdk)
vnet_LDFLAGS += $(call installed_libs_fn, dpdk)
diff --git a/build-data/packages/vpp.mk b/build-data/packages/vpp.mk
index 54aa5484..9ccf6901 100644
--- a/build-data/packages/vpp.mk
+++ b/build-data/packages/vpp.mk
@@ -28,7 +28,7 @@ vpp_LDFLAGS = $(call installed_libs_fn, \
vlib-api \
vnet)
-ifeq ($($(PLATFORM)_uses_dpdk),yes)
+ifneq ($($(PLATFORM)_uses_dpdk),no)
vpp_configure_depend += dpdk-install
vpp_CPPFLAGS += $(call installed_includes_fn, dpdk)
vpp_LDFLAGS += $(call installed_libs_fn, dpdk)