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 <gabriel.valcazar@digi.com>
This commit is contained in:
Gabriel Valcazar 2024-09-18 16:03:14 +02:00
parent 3231654757
commit ab8941b8c9
1 changed files with 1 additions and 1 deletions

View File

@ -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 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 () { do_compile:append:ccimx93 () {
oe_runmake PLATFORM=imx-${PLATFORM_FLAVOR}_a0 O=${B}-A0 all oe_runmake PLATFORM=imx-${PLATFORM_FLAVOR}_a0 O=${B}-A0 all