summaryrefslogtreecommitdiffstats
path: root/meta/classes/useradd.bbclass
diff options
context:
space:
mode:
authorLeonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com>2015-05-14 07:03:34 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-16 22:31:51 +0100
commit5d426794f9a9d3ca4ffd21b0c5a300e3daeef4b9 (patch)
treefe3a593a0d22cfe2c7eaec18aaa7201beac0eedb /meta/classes/useradd.bbclass
parent4075192fc585dfa7e5f90b83a4685c5c4a7f4a8f (diff)
downloadpoky-5d426794f9a9d3ca4ffd21b0c5a300e3daeef4b9.tar.gz
useradd.bbclass: Remove base-passwd dependency
shadow-sysroot (another useradd dependency) recipe already includes base-passwd dependency, so removing it from useradd class. This fixes the compilation issue observed when a recipe depends on another where the latter inherits from useradd as in the following scenario: https://bugzilla.yoctoproject.org/show_bug.cgi?id=7724#c0 [Yocto #7724] (From OE-Core rev: a68a797c7aec607a0720ec5421baf6be821803b8) Signed-off-by: Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/useradd.bbclass')
-rw-r--r--meta/classes/useradd.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass
index e443f845f7..eb82b00473 100644
--- a/meta/classes/useradd.bbclass
+++ b/meta/classes/useradd.bbclass
@@ -4,7 +4,7 @@ inherit useradd_base
4# target sysroot, and shadow -native and -sysroot provide the utilities 4# target sysroot, and shadow -native and -sysroot provide the utilities
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
6DEPENDS_append = "${USERADDDEPENDS}" 6DEPENDS_append = "${USERADDDEPENDS}"
7USERADDDEPENDS = " base-files base-passwd shadow-native shadow-sysroot shadow" 7USERADDDEPENDS = " base-files shadow-native shadow-sysroot shadow"
8USERADDDEPENDS_class-cross = "" 8USERADDDEPENDS_class-cross = ""
9USERADDDEPENDS_class-native = "" 9USERADDDEPENDS_class-native = ""
10USERADDDEPENDS_class-nativesdk = "" 10USERADDDEPENDS_class-nativesdk = ""