[oe-commits] [openembedded-core] 05/21: sstate.bbclass: provide an exception for useradd scenario

git at git.openembedded.org git at git.openembedded.org
Mon Oct 16 22:53:10 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 979699b55214933e0f11727a2fb9bfda8a3a3870
Author: Maxin B. John <maxin.john at intel.com>
AuthorDate: Thu Oct 12 11:09:07 2017 +0300

    sstate.bbclass: provide an exception for useradd scenario
    
    Packages, which depend on users/groups created from other packages,
    needs "shadow-native" as a build time dependency. So, add an exception
    to the "shadow-native" from otherwise discarded native/cross tools
    dependency.
    
    Fixes [YOCTO #11960]
    
    Signed-off-by: Maxin B. John <maxin.john at intel.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/sstate.bbclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 2a54993..e30fbe1 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -967,7 +967,8 @@ def setscene_depvalid(task, taskdependees, notneeded, d, log=None):
             if isNativeCross(taskdependees[dep][0]):
                 return False
             # Native/cross tools depended upon by target sysroot are not needed
-            if isNativeCross(taskdependees[task][0]):
+            # Add an exception for shadow-native as required by useradd.bbclass
+            if isNativeCross(taskdependees[task][0]) and taskdependees[task][0] != 'shadow-native':
                 continue
             # Target populate_sysroot need their dependencies
             return False

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list