build: move enabled applications list declaration
Checks
Commit Message
No functional impact foreseen. Simply move this variable and rename it
for consistency with other similar variables.
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
app/meson.build | 4 +---
meson.build | 3 ++-
2 files changed, 3 insertions(+), 4 deletions(-)
Comments
On Fri, Aug 11, 2023 at 03:28:05PM +0200, David Marchand wrote:
> No functional impact foreseen. Simply move this variable and rename it
> for consistency with other similar variables.
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
On Fri, Aug 11, 2023 at 03:28:05PM +0200, David Marchand wrote:
> No functional impact foreseen. Simply move this variable and rename it
> for consistency with other similar variables.
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
Acked-by: Tyler Retzlaff <roretzla@linux.microsoft.com>
On Fri, Aug 11, 2023 at 3:28 PM David Marchand
<david.marchand@redhat.com> wrote:
>
> No functional impact foreseen. Simply move this variable and rename it
> for consistency with other similar variables.
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by Tyler Retzlaff <roretzla@linux.microsoft.com>
Applied, thanks.
@@ -38,8 +38,6 @@ if get_option('default_library') == 'static' and not is_windows
default_ldflags += ['-Wl,--export-dynamic']
endif
-enabled_apps = [] # used to print summary at the end
-
foreach app:apps
name = app
build = true
@@ -90,7 +88,7 @@ foreach app:apps
continue
endif
- enabled_apps += app
+ dpdk_apps_enabled += app
link_libs = []
if get_option('default_library') == 'static'
link_libs = dpdk_static_libraries + dpdk_drivers
@@ -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