summaryrefslogtreecommitdiffstats
path: root/meta/classes/package.bbclass
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:19 +0100
commit8e74a9795caea8cc9272965b4ecad8f97f8c4509 (patch)
treef03d6a703f5ee7ffe2a4320ddcfeda1b9f13a488 /meta/classes/package.bbclass
parent57fdbe9bccf5e69cca48df09339e29504a417b33 (diff)
downloadpoky-8e74a9795caea8cc9272965b4ecad8f97f8c4509.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/classes/package.bbclass')
-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 = []