From f30de5053ba502e1da28a372b9fec1c42e387fbd Mon Sep 17 00:00:00 2001 From: Luciano Dittgen Date: Fri, 11 Sep 2026 16:03:39 -0300 Subject: optee-client-qoriq: Append rather than overwrite DEPENDS The required optee-client-fslc.inc inherits useradd, whose immediate DEPENDS += "${USERADD_DEPENDS}" runs before this line and would be dropped by a plain '='. USERADD_DEPENDS is empty here, so the expanded DEPENDS is unchanged, but the append stops a future value silently vanishing. Tested with bitbake optee-client-qoriq -C do_compile on ls1088ardb; buildhistory delta is empty. Signed-off-by: Luciano Dittgen --- recipes-security/optee-qoriq/optee-client.nxp.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-security/optee-qoriq/optee-client.nxp.inc b/recipes-security/optee-qoriq/optee-client.nxp.inc index 7a70d49c2..316e27b3b 100644 --- a/recipes-security/optee-qoriq/optee-client.nxp.inc +++ b/recipes-security/optee-qoriq/optee-client.nxp.inc @@ -12,7 +12,7 @@ require recipes-security/optee-imx/optee-client-fslc.inc # nooelint: oelint.vars.outofcontext FILESEXTRAPATHS:prepend := "${THISDIR}/../optee-imx/optee-client:" -DEPENDS = "util-linux-libuuid" +DEPENDS += "util-linux-libuuid" SRC_URI:remove = "git://github.com/OP-TEE/optee_client.git;branch=master;protocol=https" SRC_URI:prepend = "${OPTEE_CLIENT_SRC};branch=${OPTEE_CLIENT_BRANCH} " -- cgit v1.2.3-54-g00ecf