summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-18 13:28:02 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-18 21:12:22 +0100
commit701c3ce3c6a958b2b2c7b2bde7e070707a0f973a (patch)
tree92ec59b5f49606b9e0b7f9487ab08a4bc7247be2 /meta
parent050c61732a8cec70b704ea4ba82fcc06a7d0c378 (diff)
downloadpoky-701c3ce3c6a958b2b2c7b2bde7e070707a0f973a.tar.gz
package.bbclass: Add useradd variables to PACKAGEVARS
THe USERADD_PARAMS and similar group variables are package specific variables which should get added to the vardeps of the packaging process. This change also ensures they get remapped correctly by the multilib code. (From OE-Core rev: 805add18e7b917aaef61c82c0b5f2e9682af1d0d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/package.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 5765e127d0..2bc31eefe2 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1780,7 +1780,7 @@ python package_depchains() {
1780 1780
1781# Since bitbake can't determine which variables are accessed during package 1781# Since bitbake can't determine which variables are accessed during package
1782# iteration, we need to list them here: 1782# iteration, we need to list them here:
1783PACKAGEVARS = "FILES RDEPENDS RRECOMMENDS SUMMARY DESCRIPTION RSUGGESTS RPROVIDES RCONFLICTS PKG ALLOW_EMPTY pkg_postinst pkg_postrm INITSCRIPT_NAME INITSCRIPT_PARAMS DEBIAN_NOAUTONAME ALTERNATIVE PKGE PKGV PKGR" 1783PACKAGEVARS = "FILES RDEPENDS RRECOMMENDS SUMMARY DESCRIPTION RSUGGESTS RPROVIDES RCONFLICTS PKG ALLOW_EMPTY pkg_postinst pkg_postrm INITSCRIPT_NAME INITSCRIPT_PARAMS DEBIAN_NOAUTONAME ALTERNATIVE PKGE PKGV PKGR USERADD_PARAM GROUPADD_PARAM"
1784 1784
1785def gen_packagevar(d): 1785def gen_packagevar(d):
1786 ret = [] 1786 ret = []