diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 11:41:00 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 11:44:28 +0100 |
commit | 897a8b5abc3ce3af89c78aa4ce4522487c75f38c (patch) | |
tree | c13c7a92c022cb178399a8b9d9795b88b4794412 /meta/classes | |
parent | dc807f54f858419f97e211cd62fd2d30db9a80de (diff) | |
download | openembedded-core-897a8b5abc3ce3af89c78aa4ce4522487c75f38c.tar.gz openembedded-core-897a8b5abc3ce3af89c78aa4ce4522487c75f38c.tar.bz2 openembedded-core-897a8b5abc3ce3af89c78aa4ce4522487c75f38c.tar.xz openembedded-core-897a8b5abc3ce3af89c78aa4ce4522487c75f38c.zip |
stagemanager: Move functionality into the scripts directory
Since scripts is now in PATH thanks to the layer functionality there is
no longer any need to have this recipe full of special cases, the scripts
can just be placed there.
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/packaged-staging.bbclass | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/classes/packaged-staging.bbclass b/meta/classes/packaged-staging.bbclass index bd2dc1652..fe4d93870 100644 --- a/meta/classes/packaged-staging.bbclass +++ b/meta/classes/packaged-staging.bbclass @@ -23,7 +23,6 @@ PSTAGE_SCAN_CMD ?= "find ${PSTAGE_TMPDIR_STAGE} \( -name "*.la" -o -name "*-conf PSTAGE_NATIVEDEPENDS = "\ shasum-native \ - stagemanager-native \ " BB_STAMP_WHITELIST = "${PSTAGE_NATIVEDEPENDS}" @@ -63,10 +62,6 @@ python () { # Add task dependencies if we're active, otherwise mark packaged staging # as inactive. if pstage_allowed: - deps = bb.data.getVarFlag('do_setscene', 'depends', d) or "" - deps += " stagemanager-native:do_populate_sysroot" - bb.data.setVarFlag('do_setscene', 'depends', deps, d) - policy = bb.data.getVar("BB_STAMP_POLICY", d, True) if policy == "whitelist" or policy == "full": deps = bb.data.getVarFlag('do_setscene', 'recrdeptask', d) or "" |