summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-18 13:26:37 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-18 21:12:22 +0100
commit050c61732a8cec70b704ea4ba82fcc06a7d0c378 (patch)
treed406fae395fba4b6ec5b0a04893a0b85e5d6dab8 /meta
parent7f2898c16700b92729216b4c9998150e4a17a4a8 (diff)
downloadpoky-050c61732a8cec70b704ea4ba82fcc06a7d0c378.tar.gz
multilib: Ensure we map the USERADD_PACKAGES variable
If we don't do this, multilib packages don't have any code added to the postinstalls to handle user additions. (From OE-Core rev: b10d17d1b03fd0564103a6998f218d0968d1032b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/multilib.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass
index 3cc470ec4c..4dbec73d78 100644
--- a/meta/classes/multilib.bbclass
+++ b/meta/classes/multilib.bbclass
@@ -100,6 +100,7 @@ python __anonymous () {
100 clsextend.map_regexp_variable("PACKAGES_DYNAMIC") 100 clsextend.map_regexp_variable("PACKAGES_DYNAMIC")
101 clsextend.map_variable("PACKAGE_INSTALL") 101 clsextend.map_variable("PACKAGE_INSTALL")
102 clsextend.map_variable("INITSCRIPT_PACKAGES") 102 clsextend.map_variable("INITSCRIPT_PACKAGES")
103 clsextend.map_variable("USERADD_PACKAGES")
103} 104}
104 105
105PACKAGEFUNCS_append = "do_package_qa_multilib" 106PACKAGEFUNCS_append = "do_package_qa_multilib"