mirror of
https://git.busybox.net/buildroot.git
synced 2025-01-10 22:43:24 +08: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:
parent
0ea7118f0e
commit
f835da1c6d
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user