summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Sieron <michalwsieron@gmail.com>2026-03-29 23:37:13 +0200
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-04-01 13:16:38 -0700
commitd20fbcbaaeef9b6cd711ef53b3b2a4a1668a1591 (patch)
tree55594602f0165e0ca4db5795c896166f5c6820b9
parent85bcf27db894db32aa79eeef0e0aaa60c53bdc3c (diff)
downloadmeta-openembedded-d20fbcbaaeef9b6cd711ef53b3b2a4a1668a1591.tar.gz
pcsc-lite: Convert confusing append to override syntax
While in this case `RPROVIDES:${PN}:class-native +=` wouldn't result in any unwanted override, there is no guarantee there won't be a change, which would be hidden by this override. To avoid any surprises in the future let's use `:append:class-native =` syntax here. Signed-off-by: Michal Sieron <michalwsieron@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
-rw-r--r--meta-oe/recipes-support/pcsc-lite/pcsc-lite_2.0.3.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/pcsc-lite/pcsc-lite_2.0.3.bb b/meta-oe/recipes-support/pcsc-lite/pcsc-lite_2.0.3.bb
index 169630d319..9e3c98bb97 100644
--- a/meta-oe/recipes-support/pcsc-lite/pcsc-lite_2.0.3.bb
+++ b/meta-oe/recipes-support/pcsc-lite/pcsc-lite_2.0.3.bb
@@ -34,7 +34,7 @@ PACKAGES = "${PN} ${PN}-dbg ${PN}-dev ${PN}-lib ${PN}-doc ${PN}-spy ${PN}-spy-de
34 34
35RRECOMMENDS:${PN} = "ccid" 35RRECOMMENDS:${PN} = "ccid"
36RRECOMMENDS:${PN}:class-native = "" 36RRECOMMENDS:${PN}:class-native = ""
37RPROVIDES:${PN}:class-native += "pcsc-lite-lib-native" 37RPROVIDES:${PN}:append:class-native = " pcsc-lite-lib-native"
38 38
39FILES:${PN} = "${sbindir}/pcscd \ 39FILES:${PN} = "${sbindir}/pcscd \
40 ${datadir}/polkit-1" 40 ${datadir}/polkit-1"