From ab8941b8c9646c67a7ed637b3ab36700b08c3599 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Wed, 18 Sep 2024 16:03:14 +0200 Subject: [PATCH] freescale-layer: optee-os: fix staticdev package QA errors For some reason, using the '+=' operator instead of ':append' when specifying the staticdev package's FILES, the original values are overwritten, causing all of them to get included in the dev package instead. Since some of these files are static libraries, this causes QA errors. Replace the '+=' operator with ':append' to fix this. Signed-off-by: Gabriel Valcazar --- .../recipes-security/optee-imx/optee-os_4.2.0.imx.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-digi-arm/dynamic-layers/freescale-layer/recipes-security/optee-imx/optee-os_4.2.0.imx.bbappend b/meta-digi-arm/dynamic-layers/freescale-layer/recipes-security/optee-imx/optee-os_4.2.0.imx.bbappend index 3175222fb..0af227fab 100644 --- a/meta-digi-arm/dynamic-layers/freescale-layer/recipes-security/optee-imx/optee-os_4.2.0.imx.bbappend +++ b/meta-digi-arm/dynamic-layers/freescale-layer/recipes-security/optee-imx/optee-os_4.2.0.imx.bbappend @@ -19,7 +19,7 @@ do_install:append:ccimx91 () { sed -e "s,#OPTEE_ARCH#,${OPTEE_ARCH},g" ${WORKDIR}/environment.d-optee-sdk.sh > ${D}/environment-setup.d/optee-sdk.sh } -FILES:${PN}-staticdev:ccimx91 += "/environment-setup.d/" +FILES:${PN}-staticdev:append:ccimx91 = " /environment-setup.d/" do_compile:append:ccimx93 () { oe_runmake PLATFORM=imx-${PLATFORM_FLAVOR}_a0 O=${B}-A0 all