From: Richard Purdie Date: Thu, 18 Apr 2013 13:28:02 +0000 (+0000) Subject: package.bbclass: Add useradd variables to PACKAGEVARS X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~37618 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=805add18e7b917aaef61c82c0b5f2e9682af1d0d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 5765e127d09..2bc31eefe2f 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -1780,7 +1780,7 @@ python package_depchains() { # Since bitbake can't determine which variables are accessed during package # iteration, we need to list them here: -PACKAGEVARS = "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" +PACKAGEVARS = "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" def gen_packagevar(d): ret = []