diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-09 17:30:43 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-10 11:37:13 +0000 |
commit | 605d0116414fe0ca2796b36c7a042af81c69e41b (patch) | |
tree | f87510013ae17521b14ef2fdfc54583579d4f503 /meta/classes/useradd.bbclass | |
parent | d847aba4e6b75149fa4f43d6b46417d052c2183d (diff) | |
download | poky-605d0116414fe0ca2796b36c7a042af81c69e41b.tar.gz |
useradd: Add missing DEPEND on shadow
Without this rootfs generation fails as an RDEPENDS is added
but the package might not have bneen built.
(From OE-Core rev: bfe70c6446e6686f826f01040ba74c7d7d28bf42)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/useradd.bbclass')
-rw-r--r-- | meta/classes/useradd.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 64d6861644..f3dd8236ee 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass | |||
@@ -2,7 +2,7 @@ | |||
2 | # target sysroot, and shadow -native and -sysroot provide the utilities | 2 | # target sysroot, and shadow -native and -sysroot provide the utilities |
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" | 5 | USERADDDEPENDS = " base-passwd shadow-native shadow-sysroot shadow" |
6 | USERADDDEPENDS_virtclass-nativesdk = "" | 6 | USERADDDEPENDS_virtclass-nativesdk = "" |
7 | 7 | ||
8 | # This preinstall function will be run in two contexts: once for the | 8 | # This preinstall function will be run in two contexts: once for the |