[libcamera-devel] [PATCH] cam: Fix indentation in meson.build
Laurent Pinchart
laurent.pinchart at ideasonboard.com
Thu Mar 24 17:03:51 CET 2022
One if...endif block is incorrectly indented. Fix it.
Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
---
src/cam/meson.build | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/cam/meson.build b/src/cam/meson.build
index e8e2ae57d3f4..5bab8c9e331b 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,
--
Regards,
Laurent Pinchart
More information about the libcamera-devel
mailing list