summaryrefslogtreecommitdiffstats
path: root/meta/classes/multilib.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-22 12:20:04 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-29 18:00:00 +0100
commit2806646a263527ec0487ea160afd4bdc0a3c1703 (patch)
treef08a2f47ef384fd6e652d721a9d320168309071f /meta/classes/multilib.bbclass
parent995de756e344ab7965160a633c2a408bede7ed97 (diff)
downloadpoky-2806646a263527ec0487ea160afd4bdc0a3c1703.tar.gz
multilib/clsextend: Improve handling of regexps in PACKAGES_DYNAMIC
Now that PACKAGES_DYNAMIC is more standardised, starting with ^ anchors, the variable manipulations performed by clsextend for multilib don't work. This patch at least improves it to hack around the problem and enable mulitlib builds to work again. If this code doesn't do the right thing, the recipe is free to override the variable with the correct multilib case. (From OE-Core rev: d4f366c00335d28b90e1b071631aa90ce9d38321) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/multilib.bbclass')
-rw-r--r--meta/classes/multilib.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass
index eaaad5fa62..3824f3b117 100644
--- a/meta/classes/multilib.bbclass
+++ b/meta/classes/multilib.bbclass
@@ -75,7 +75,7 @@ python __anonymous () {
75 clsextend.map_depends_variable("DEPENDS") 75 clsextend.map_depends_variable("DEPENDS")
76 clsextend.map_packagevars() 76 clsextend.map_packagevars()
77 clsextend.map_variable("PROVIDES") 77 clsextend.map_variable("PROVIDES")
78 clsextend.map_variable("PACKAGES_DYNAMIC") 78 clsextend.map_regexp_variable("PACKAGES_DYNAMIC")
79 clsextend.map_variable("PACKAGE_INSTALL") 79 clsextend.map_variable("PACKAGE_INSTALL")
80 clsextend.map_variable("INITSCRIPT_PACKAGES") 80 clsextend.map_variable("INITSCRIPT_PACKAGES")
81} 81}