diff options
author | Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> | 2015-05-14 07:03:34 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-16 22:31:51 +0100 |
commit | 5d426794f9a9d3ca4ffd21b0c5a300e3daeef4b9 (patch) | |
tree | fe3a593a0d22cfe2c7eaec18aaa7201beac0eedb | |
parent | 4075192fc585dfa7e5f90b83a4685c5c4a7f4a8f (diff) | |
download | poky-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>
-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 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 |
6 | DEPENDS_append = "${USERADDDEPENDS}" | 6 | DEPENDS_append = "${USERADDDEPENDS}" |
7 | USERADDDEPENDS = " base-files base-passwd shadow-native shadow-sysroot shadow" | 7 | USERADDDEPENDS = " base-files shadow-native shadow-sysroot shadow" |
8 | USERADDDEPENDS_class-cross = "" | 8 | USERADDDEPENDS_class-cross = "" |
9 | USERADDDEPENDS_class-native = "" | 9 | USERADDDEPENDS_class-native = "" |
10 | USERADDDEPENDS_class-nativesdk = "" | 10 | USERADDDEPENDS_class-nativesdk = "" |