diff options
| author | Thomas Monjalon <[email protected]> | 2018-06-06 15:50:27 +0200 |
|---|---|---|
| committer | Thomas Monjalon <[email protected]> | 2018-07-12 09:48:12 +0200 |
| commit | ed3077c16557e40e1967bed146eed3023b6cea5f (patch) | |
| tree | 4e8ba4f695b7bebb49bd1c2940384e0391c5eb9b /examples/server_node_efd | |
| parent | 6bf9f604bc7d320536a2a344f77a89c05a731f3c (diff) | |
examples: make Linux environment check consistent
Some Makefiles are using CONFIG_RTE_EXEC_ENV and others
are using CONFIG_RTE_EXEC_ENV_LINUXAPP.
Use the latter one for consistency.
We could remove CONFIG_RTE_EXEC_ENV later if considered useless.
Signed-off-by: Thomas Monjalon <[email protected]>
Diffstat (limited to 'examples/server_node_efd')
| -rw-r--r-- | examples/server_node_efd/server/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/server_node_efd/server/Makefile b/examples/server_node_efd/server/Makefile index cbb91ebe89..df6614c604 100644 --- a/examples/server_node_efd/server/Makefile +++ b/examples/server_node_efd/server/Makefile @@ -10,7 +10,7 @@ RTE_TARGET ?= x86_64-native-linuxapp-gcc include $(RTE_SDK)/mk/rte.vars.mk -ifneq ($(CONFIG_RTE_EXEC_ENV), "linuxapp") +ifneq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y) $(error This application can only operate in a linuxapp environment, \ please change the definition of the RTE_TARGET environment variable) endif |
