From bf5b3af88f555fcae4d9dba1ea7725c37fb290d0 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Thu, 24 Mar 2022 18:02:00 +0200 Subject: cam: Fix indentation in meson.build One if...endif block is incorrectly indented. Fix it. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Paul Elder --- src/cam/meson.build | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/cam/meson.build b/src/cam/meson.build index e8e2ae57..5bab8c9e 100644 --- a/src/cam/meson.build +++ b/src/cam/meson.build @@ -25,11 +25,11 @@ cam_cpp_args = [] libdrm = dependency('libdrm', required : false) if libdrm.found() -cam_cpp_args += [ '-DHAVE_KMS' ] -cam_sources += files([ - 'drm.cpp', - 'kms_sink.cpp' -]) + cam_cpp_args += [ '-DHAVE_KMS' ] + cam_sources += files([ + 'drm.cpp', + 'kms_sink.cpp' + ]) endif cam = executable('cam', cam_sources, -- cgit v1.2.1