diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-12 12:11:34 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-13 11:41:21 +0000 |
commit | 4db39d233c268f99ce73fe78af3921a18da08056 (patch) | |
tree | 1914073e95c1af0411f76a6aba42df0bae04b036 /meta/classes/useradd.bbclass | |
parent | 3d0dccd02612caecf1a82395160121ba47153ddc (diff) | |
download | poky-4db39d233c268f99ce73fe78af3921a18da08056.tar.gz |
meta/recipes: Remove virtclass references
The virtclass overrides will go away at some point (apart from the multilib one).
Change them all to class-xxx instead since people enjoy copy and pasting them.
(From OE-Core rev: d1c073d2813bd913617990cd047507353ea0c09e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/useradd.bbclass')
-rw-r--r-- | meta/classes/useradd.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 22bae97324..b5f37688fe 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass | |||
@@ -5,7 +5,7 @@ inherit useradd_base | |||
5 | # and support files needed to add and modify user and group accounts | 5 | # and support files needed to add and modify user and group accounts |
6 | DEPENDS_append = "${USERADDDEPENDS}" | 6 | DEPENDS_append = "${USERADDDEPENDS}" |
7 | USERADDDEPENDS = " base-passwd shadow-native shadow-sysroot shadow" | 7 | USERADDDEPENDS = " base-passwd shadow-native shadow-sysroot shadow" |
8 | USERADDDEPENDS_virtclass-cross = "" | 8 | USERADDDEPENDS_class-cross = "" |
9 | USERADDDEPENDS_class-native = "" | 9 | USERADDDEPENDS_class-native = "" |
10 | USERADDDEPENDS_class-nativesdk = "" | 10 | USERADDDEPENDS_class-nativesdk = "" |
11 | 11 | ||
@@ -117,17 +117,17 @@ useradd_sysroot_sstate () { | |||
117 | 117 | ||
118 | do_install[prefuncs] += "${SYSROOTFUNC}" | 118 | do_install[prefuncs] += "${SYSROOTFUNC}" |
119 | SYSROOTFUNC = "useradd_sysroot" | 119 | SYSROOTFUNC = "useradd_sysroot" |
120 | SYSROOTFUNC_virtclass-cross = "" | 120 | SYSROOTFUNC_class-cross = "" |
121 | SYSROOTFUNC_class-native = "" | 121 | SYSROOTFUNC_class-native = "" |
122 | SYSROOTFUNC_class-nativesdk = "" | 122 | SYSROOTFUNC_class-nativesdk = "" |
123 | SSTATEPREINSTFUNCS += "${SYSROOTPOSTFUNC}" | 123 | SSTATEPREINSTFUNCS += "${SYSROOTPOSTFUNC}" |
124 | SYSROOTPOSTFUNC = "useradd_sysroot_sstate" | 124 | SYSROOTPOSTFUNC = "useradd_sysroot_sstate" |
125 | SYSROOTPOSTFUNC_virtclass-cross = "" | 125 | SYSROOTPOSTFUNC_class-cross = "" |
126 | SYSROOTPOSTFUNC_class-native = "" | 126 | SYSROOTPOSTFUNC_class-native = "" |
127 | SYSROOTPOSTFUNC_class-nativesdk = "" | 127 | SYSROOTPOSTFUNC_class-nativesdk = "" |
128 | 128 | ||
129 | USERADDSETSCENEDEPS = "${MLPREFIX}base-passwd:do_populate_sysroot_setscene shadow-native:do_populate_sysroot_setscene ${MLPREFIX}shadow-sysroot:do_populate_sysroot_setscene" | 129 | USERADDSETSCENEDEPS = "${MLPREFIX}base-passwd:do_populate_sysroot_setscene shadow-native:do_populate_sysroot_setscene ${MLPREFIX}shadow-sysroot:do_populate_sysroot_setscene" |
130 | USERADDSETSCENEDEPS_virtclass-cross = "" | 130 | USERADDSETSCENEDEPS_class-cross = "" |
131 | USERADDSETSCENEDEPS_class-native = "" | 131 | USERADDSETSCENEDEPS_class-native = "" |
132 | USERADDSETSCENEDEPS_class-nativesdk = "" | 132 | USERADDSETSCENEDEPS_class-nativesdk = "" |
133 | do_package_setscene[depends] += "${USERADDSETSCENEDEPS}" | 133 | do_package_setscene[depends] += "${USERADDSETSCENEDEPS}" |