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-03-30 19:46:42 -0700
commitd47098c0a7d4faa0d3a8080559cfd602727d1094 (patch)
tree6ec5906d1ff32db928a42cef6abe05ac6143968a
parent062c3cd9c3795f55987fa5d3a11dd09c3b13bb77 (diff)
downloadmeta-openembedded-d47098c0a7d4faa0d3a8080559cfd602727d1094.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() {