From 0e34bced7829dc9cb74e0af81f3f12058380b352 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Mon, 17 Jun 2019 09:54:42 +0200 Subject: [PATCH] examples/vdpa: remove trace of legacy linuxapp This check on Linux environment has been added at a time when we already had switched to using the boolean RTE_EXEC_ENV_LINUXAPP. It was then missed when converting to RTE_EXEC_ENV_LINUX. Fixes: edbed86d1cc3 ("examples/vdpa: introduce a new sample for vDPA") Fixes: 742bde12f3bd ("build/linux: rename macro from LINUXAPP to LINUX") Cc: stable@dpdk.org Signed-off-by: David Marchand Reviewed-by: Tiwei Bie Reviewed-by: Xiaolong Ye --- examples/vdpa/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vdpa/Makefile b/examples/vdpa/Makefile index 9d16d8eb5f..ab2bbdf76c 100644 --- a/examples/vdpa/Makefile +++ b/examples/vdpa/Makefile @@ -10,7 +10,7 @@ RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.conf include $(RTE_SDK)/mk/rte.vars.mk -ifneq ($(CONFIG_RTE_EXEC_ENV),"linuxapp") +ifneq ($(CONFIG_RTE_EXEC_ENV_LINUX),y) $(info This application can only operate in a linux environment, \ please change the definition of the RTE_TARGET environment variable) all: -- 2.20.1