summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/rootfs_ipk.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2024-01-02 17:22:01 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-01-18 10:15:58 +0000
commit12619deabd1f85d88ff14d7c3861e23eeb58bf1b (patch)
tree845e727c6709eec6038373eceb40cf2fac97d817 /meta/classes-recipe/rootfs_ipk.bbclass
parent55eaa3eb3f87fb900f4ea6e387ffbad73d78580c (diff)
downloadpoky-12619deabd1f85d88ff14d7c3861e23eeb58bf1b.tar.gz
rootfs: Fix MULTILIB_RE_ALLOW to be inherit order independent
This variable is only used by the ipk backend with multilibs. In order to make it work correctly regardless of inherit order, change the string to be space delimeted, set using += and add in the regex '|' sperator at the end of processing. (From OE-Core rev: 72befdb12568fbc642022ef0a23b269c5b37a638) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/rootfs_ipk.bbclass')
-rw-r--r--meta/classes-recipe/rootfs_ipk.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/rootfs_ipk.bbclass b/meta/classes-recipe/rootfs_ipk.bbclass
index a48ad07dfc..87fff53a58 100644
--- a/meta/classes-recipe/rootfs_ipk.bbclass
+++ b/meta/classes-recipe/rootfs_ipk.bbclass
@@ -29,7 +29,7 @@ OPKG_POSTPROCESS_COMMANDS = ""
29 29
30OPKGLIBDIR ??= "${localstatedir}/lib" 30OPKGLIBDIR ??= "${localstatedir}/lib"
31 31
32MULTILIBRE_ALLOW_REP = "${OPKGLIBDIR}/opkg|/usr/lib/opkg" 32MULTILIBRE_ALLOW_REP += "${OPKGLIBDIR}/opkg /usr/lib/opkg"
33 33
34python () { 34python () {
35 35