diff options
author | Scott Garman <scott.a.garman@intel.com> | 2011-11-08 18:40:28 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-10 11:35:30 +0000 |
commit | 2f057dd905ccb497890ce73ac4e4c256edcf0351 (patch) | |
tree | d3498f720ee8f135809e48a6493e51ca4772ac64 /meta/classes/useradd.bbclass | |
parent | 2f73466eb5018040a123ccb0e2af8c519525f958 (diff) | |
download | openembedded-core-2f057dd905ccb497890ce73ac4e4c256edcf0351.tar.gz openembedded-core-2f057dd905ccb497890ce73ac4e4c256edcf0351.tar.bz2 openembedded-core-2f057dd905ccb497890ce73ac4e4c256edcf0351.zip |
useradd.bbclass: do not modify -nativesdk packages
Exclude the addition of user/group code and RDEPENDS changes for
-nativesdk packages.
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Diffstat (limited to 'meta/classes/useradd.bbclass')
-rw-r--r-- | meta/classes/useradd.bbclass | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 3b2d1dbfe8..64d6861644 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass @@ -153,10 +153,11 @@ fakeroot python populate_packages_prepend () { rdepends = d.getVar("RDEPENDS_%s" % pkg, True) or "" rdepends += " base-passwd shadow" bb.data.setVar("RDEPENDS_%s" % pkg, rdepends, d) - + # Add the user/group preinstall scripts and RDEPENDS requirements # to packages specified by USERADD_PACKAGES - useradd_packages = d.getVar('USERADD_PACKAGES', True) or "" - for pkg in useradd_packages.split(): - update_useradd_package(pkg) + if not bb.data.inherits_class('nativesdk', d): + useradd_packages = d.getVar('USERADD_PACKAGES', True) or "" + for pkg in useradd_packages.split(): + update_useradd_package(pkg) } |