From c698473440abee7330c76d2370c3c01ecc48b8e3 Mon Sep 17 00:00:00 2001 From: Quentin Schulz Date: Tue, 26 Jul 2022 15:20:51 +0200 Subject: libcamera: Correctly report enabled ipa modules "ipa_modules" stores the value of the ipas meson build option. IPAs are enabled if and only if there is an enabled pipeline for an IPA listed in "ipa_modules" array. It is basically the intersection of pipelines and ipa_modules array. In order to correctly report which IPAs get enabled, let's create a new array storing this intersection. Cc: Quentin Schulz Reported-by: Daniel Semkowicz Signed-off-by: Quentin Schulz Reviewed-by: Kieran Bingham Reviewed-by: Jacopo Mondi Signed-off-by: Jacopo Mondi --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 3f7a3f56..e8b81ad8 100644 --- a/meson.build +++ b/meson.build @@ -173,7 +173,7 @@ py_mod.find_installation('python3', modules: py_modules) ## Summarise Configurations summary({ 'Enabled pipelines': pipelines, - 'Enabled IPA modules': ipa_modules, + 'Enabled IPA modules': enabled_ipa_modules, 'Tracing support': tracing_enabled, 'Android support': android_enabled, 'GStreamer support': gst_enabled, -- cgit v1.2.1