diff options
| author | Luciano Dittgen <luciano.dittgen@ossystems.com.br> | 2026-09-11 16:03:39 -0300 |
|---|---|---|
| committer | Luciano Dittgen <luciano.dittgen@ossystems.com.br> | 2026-09-11 16:44:52 -0300 |
| commit | f30de5053ba502e1da28a372b9fec1c42e387fbd (patch) | |
| tree | 3fe283368fe1f56bbf63e0d7f80ce246da335fb6 | |
| parent | 193495ada8fc8ed7a4fc88fc282f45fbb480057a (diff) | |
| download | meta-freescale-f30de5053ba502e1da28a372b9fec1c42e387fbd.tar.gz | |
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 <luciano.dittgen@ossystems.com.br>
| -rw-r--r-- | recipes-security/optee-qoriq/optee-client.nxp.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
| 12 | # nooelint: oelint.vars.outofcontext | 12 | # nooelint: oelint.vars.outofcontext |
| 13 | FILESEXTRAPATHS:prepend := "${THISDIR}/../optee-imx/optee-client:" | 13 | FILESEXTRAPATHS:prepend := "${THISDIR}/../optee-imx/optee-client:" |
| 14 | 14 | ||
| 15 | DEPENDS = "util-linux-libuuid" | 15 | DEPENDS += "util-linux-libuuid" |
| 16 | 16 | ||
| 17 | SRC_URI:remove = "git://github.com/OP-TEE/optee_client.git;branch=master;protocol=https" | 17 | SRC_URI:remove = "git://github.com/OP-TEE/optee_client.git;branch=master;protocol=https" |
| 18 | SRC_URI:prepend = "${OPTEE_CLIENT_SRC};branch=${OPTEE_CLIENT_BRANCH} " | 18 | SRC_URI:prepend = "${OPTEE_CLIENT_SRC};branch=${OPTEE_CLIENT_BRANCH} " |
