diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-09-19 19:58:49 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-09-20 21:54:32 +0300 |
commit | 685da13d02c01ed0a2bb7080f95b7ac56e80f221 (patch) | |
tree | 0a7bffb8ec38b2d1e754116b8233fc09df02eca0 | |
parent | cf5d0cbb34607a3041dc21364ee79e710e9e304f (diff) |
ipa: meson: Fix identation
meson.build files are indented with 4 spaces, not 2.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r-- | src/ipa/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipa/meson.build b/src/ipa/meson.build index e972bbe8..76ad5b44 100644 --- a/src/ipa/meson.build +++ b/src/ipa/meson.build @@ -31,8 +31,8 @@ ipa_modules = get_option('ipas') # Tests require the vimc IPA, similar to vimc pipline-handler for their # execution. Include it automatically when tests are enabled. if get_option('test') and 'vimc' not in ipa_modules - message('Enabling vimc IPA to support tests') - ipa_modules += ['vimc'] + message('Enabling vimc IPA to support tests') + ipa_modules += ['vimc'] endif enabled_ipa_modules = [] |