mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
package/lbcamera: don't override _CONF_OPTS, but append
Commit 99cc53f3f4 (package/libcamera: add v4l2 compatibility layer
option) incorrectly added the v4l2 option, which makes it so that
the previous options are overrdien.
Fix that by using an append-assignment.
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
@@ -37,9 +37,9 @@ LIBCAMERA_LICENSE_FILES = \
|
||||
LICENSES/CC-BY-SA-4.0.txt
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCAMERA_V4L2),y)
|
||||
LIBCAMERA_CONF_OPTS = -Dv4l2=true
|
||||
LIBCAMERA_CONF_OPTS += -Dv4l2=true
|
||||
else
|
||||
LIBCAMERA_CONF_OPTS = -Dv4l2=false
|
||||
LIBCAMERA_CONF_OPTS += -Dv4l2=false
|
||||
endif
|
||||
|
||||
LIBCAMERA_PIPELINES-$(BR2_PACKAGE_LIBCAMERA_PIPELINE_IPU3) += ipu3
|
||||
|
||||
Reference in New Issue
Block a user