summaryrefslogtreecommitdiffstats
path: root/meta/classes-global/sstate.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-19 14:47:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-20 23:51:11 +0100
commit36397b6a17be9cb3366d91a59a12317b4c7eb493 (patch)
tree4e61146bec49bac1c31648df81298353ce1c937b /meta/classes-global/sstate.bbclass
parenta8b6f9601852dbe433b20c4ea3c1fe71469efca9 (diff)
downloadpoky-36397b6a17be9cb3366d91a59a12317b4c7eb493.tar.gz
sstate: Fix nativesdk entry in SSTATE_ARCHS
PACKAGE_ARCH gets refined by each target so this value isn't valid in all contexts. Tweak to use underlying variables to build it so that it remains valid in wider contexts and works with new usage in sdpx and license classes. (From OE-Core rev: ca90379147cb75755d205670781d8922161e9317) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-global/sstate.bbclass')
-rw-r--r--meta/classes-global/sstate.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-global/sstate.bbclass b/meta/classes-global/sstate.bbclass
index c50198449c..275917ed7f 100644
--- a/meta/classes-global/sstate.bbclass
+++ b/meta/classes-global/sstate.bbclass
@@ -90,7 +90,7 @@ SSTATE_ARCHS = " \
90 ${BUILD_ARCH}_${ORIGNATIVELSBSTRING} \ 90 ${BUILD_ARCH}_${ORIGNATIVELSBSTRING} \
91 ${BUILD_ARCH}_${SDK_ARCH}_${SDK_OS} \ 91 ${BUILD_ARCH}_${SDK_ARCH}_${SDK_OS} \
92 ${SDK_ARCH}_${SDK_OS} \ 92 ${SDK_ARCH}_${SDK_OS} \
93 ${SDK_ARCH}_${PACKAGE_ARCH} \ 93 ${SDK_ARCH}_${SDK_ARCH}-${SDKPKGSUFFIX} \
94 allarch \ 94 allarch \
95 ${PACKAGE_ARCH} \ 95 ${PACKAGE_ARCH} \
96 ${PACKAGE_EXTRA_ARCHS} \ 96 ${PACKAGE_EXTRA_ARCHS} \