diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-21 13:59:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-21 16:48:51 +0000 |
commit | 0b640a419cbc19752390cca35440707b9bfae0fa (patch) | |
tree | 8f70f86872d454cc6946c4d01895a4c1c0d0f630 /meta/classes/useradd.bbclass | |
parent | 6aa658495b028cd1301b9892fdc19a1b67ff06ca (diff) | |
download | poky-0b640a419cbc19752390cca35440707b9bfae0fa.tar.gz |
useradd: Ensure -native recipes don't depend on target recipes
Without this change, dbus-native can end up depending upon base-passwd
for example. This change mirrors the existing nativesdk code.
Based on a patch from Henning Heinold <heinold@inf.fu-berlin.de>
but with some additions from me.
(From OE-Core rev: eba81d1c606ec29ffb793c1cb3cfed9562d552bc)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/useradd.bbclass')
-rw-r--r-- | meta/classes/useradd.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 928f619b7c..ef1a9cec9f 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass | |||
@@ -3,6 +3,7 @@ | |||
3 | # and support files needed to add and modify user and group accounts | 3 | # and support files needed to add and modify user and group accounts |
4 | DEPENDS_append = "${USERADDDEPENDS}" | 4 | DEPENDS_append = "${USERADDDEPENDS}" |
5 | USERADDDEPENDS = " base-passwd shadow-native shadow-sysroot shadow" | 5 | USERADDDEPENDS = " base-passwd shadow-native shadow-sysroot shadow" |
6 | USERADDDEPENDS_virtclass-native = "" | ||
6 | USERADDDEPENDS_virtclass-nativesdk = "" | 7 | USERADDDEPENDS_virtclass-nativesdk = "" |
7 | 8 | ||
8 | # This preinstall function will be run in two contexts: once for the | 9 | # This preinstall function will be run in two contexts: once for the |
@@ -97,9 +98,11 @@ useradd_sysroot_sstate () { | |||
97 | 98 | ||
98 | do_install[prefuncs] += "${SYSROOTFUNC}" | 99 | do_install[prefuncs] += "${SYSROOTFUNC}" |
99 | SYSROOTFUNC = "useradd_sysroot" | 100 | SYSROOTFUNC = "useradd_sysroot" |
101 | SYSROOTFUNC_virtclass-native = "" | ||
100 | SYSROOTFUNC_virtclass-nativesdk = "" | 102 | SYSROOTFUNC_virtclass-nativesdk = "" |
101 | SSTATEPOSTINSTFUNCS += "${SYSROOTPOSTFUNC}" | 103 | SSTATEPOSTINSTFUNCS += "${SYSROOTPOSTFUNC}" |
102 | SYSROOTPOSTFUNC = "useradd_sysroot_sstate" | 104 | SYSROOTPOSTFUNC = "useradd_sysroot_sstate" |
105 | SYSROOTPOSTFUNC_virtclass-native = "" | ||
103 | SYSROOTPOSTFUNC_virtclass-nativesdk = "" | 106 | SYSROOTPOSTFUNC_virtclass-nativesdk = "" |
104 | 107 | ||
105 | # Recipe parse-time sanity checks | 108 | # Recipe parse-time sanity checks |