From: Richard Purdie Date: Fri, 27 Jan 2012 16:59:37 +0000 (+0000) Subject: useradd: Ensure dependencies are only added for target recipes, not native or nativesdk X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d6c43fdc815347a0adfee590da56f8b332540da6;p=openembedded-core.git useradd: Ensure dependencies are only added for target recipes, not native or nativesdk (From OE-Core rev: 63d006b2d3fc2223c74f81b91f70f5c841108c80) Signed-off-by: Richard Purdie Signed-off-by: Joshua Lock --- diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 986453a68a..74ae7d5152 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass @@ -111,7 +111,10 @@ SYSROOTPOSTFUNC = "useradd_sysroot_sstate" SYSROOTPOSTFUNC_virtclass-native = "" SYSROOTPOSTFUNC_virtclass-nativesdk = "" -do_package_setscene[depends] = "base-passwd:do_populate_sysroot_setscene shadow-native:do_populate_sysroot_setscene shadow-sysroot:do_populate_sysroot_setscene" +USERADDSETSCENEDEPS = "base-passwd:do_populate_sysroot_setscene shadow-native:do_populate_sysroot_setscene shadow-sysroot:do_populate_sysroot_setscene +USERADDSETSCENEDEPS_virtclass-native = "" +USERADDSETSCENEDEPS_virtclass-nativesdk = "" +do_package_setscene[depends] = "${USERADDSETSCENEDEPS}" # Recipe parse-time sanity checks def update_useradd_after_parse(d):