summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Sieron <michalwsieron@gmail.com>2026-03-29 23:37:10 +0200
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-04-01 13:16:38 -0700
commit57b0ba8a45dc4db78c448d329f8a15f64d013c2c (patch)
treefd89d0d35e4b2cf54fb5872aee62ec860a0709dd
parent84c2a636e74dd563229df9729abb2d62fbc1a433 (diff)
downloadmeta-openembedded-57b0ba8a45dc4db78c448d329f8a15f64d013c2c.tar.gz
graphviz: Fix append overriding value
It actually overrides value of FILES:${PN} instead of appending. In this case SDKPATHNATIVE is the prefix so everything was still working, but let's convert it to a proper conditional append. Signed-off-by: Michal Sieron <michalwsieron@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
-rw-r--r--meta-oe/recipes-graphics/graphviz/graphviz_14.1.4.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-graphics/graphviz/graphviz_14.1.4.bb b/meta-oe/recipes-graphics/graphviz/graphviz_14.1.4.bb
index bfc59c3ca1..a5f08d0c85 100644
--- a/meta-oe/recipes-graphics/graphviz/graphviz_14.1.4.bb
+++ b/meta-oe/recipes-graphics/graphviz/graphviz_14.1.4.bb
@@ -68,7 +68,7 @@ do_install:append:class-nativesdk() {
68 install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d 68 install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d
69 install -m 0755 ${UNPACKDIR}/graphviz-setup.sh ${D}${SDKPATHNATIVE}/post-relocate-setup.d 69 install -m 0755 ${UNPACKDIR}/graphviz-setup.sh ${D}${SDKPATHNATIVE}/post-relocate-setup.d
70} 70}
71FILES:${PN}:class-nativesdk += "${SDKPATHNATIVE}" 71FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}"
72 72
73# create /usr/lib/graphviz/config6 73# create /usr/lib/graphviz/config6
74graphviz_sstate_postinst() { 74graphviz_sstate_postinst() {