diff options
| author | David Marchand <[email protected]> | 2023-08-11 15:26:23 +0200 |
|---|---|---|
| committer | David Marchand <[email protected]> | 2023-08-25 10:52:31 +0200 |
| commit | 405737aa607a73dcba6807fc4e3f9c0963d9d0bc (patch) | |
| tree | 7cfba122accca19fd720d3187e9bda72c8713a09 /meson.build | |
| parent | 658e571ea32a8acd84af7c776ac5fbdf0ff0a276 (diff) | |
build: move enabled applications list declaration
No functional impact foreseen. Simply move this variable and rename it
for consistency with other similar variables.
Signed-off-by: David Marchand <[email protected]>
Acked-by: Bruce Richardson <[email protected]>
Acked-by: Tyler Retzlaff <[email protected]>
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 70b54f0c98..2e6e546d20 100644 --- a/meson.build +++ b/meson.build @@ -44,6 +44,7 @@ dpdk_drivers = [] dpdk_extra_ldflags = [] dpdk_libs_deprecated = [] dpdk_apps_disabled = [] +dpdk_apps_enabled = [] dpdk_libs_disabled = [] dpdk_libs_enabled = [] dpdk_drvs_disabled = [] @@ -123,7 +124,7 @@ endif output_message = '\n=================\nApplications Enabled\n=================\n' output_message += '\napps:\n\t' output_count = 0 -foreach app:enabled_apps +foreach app:dpdk_apps_enabled output_message += app + ', ' output_count += 1 if output_count == 8 |
