diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-18 13:56:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-18 17:06:57 +0000 |
commit | 5afe86a6854b21692fd97c5fc7fab50dbc068acb (patch) | |
tree | 194b751eb6d0471124ff124553cfe39a0b1ead22 /meta/classes/package_deb.bbclass | |
parent | 068e4289b597699cbff2dfde44ba833af4535281 (diff) | |
download | openembedded-core-5afe86a6854b21692fd97c5fc7fab50dbc068acb.tar.gz openembedded-core-5afe86a6854b21692fd97c5fc7fab50dbc068acb.tar.bz2 openembedded-core-5afe86a6854b21692fd97c5fc7fab50dbc068acb.zip |
sstate: Get rid of crazy name mapping
When originally developed, it was thought a task may have more than one associated
sstate archive. The way the code has grown that idea is now not possible or needed.
We can therefore assume one sstate archive per task and drop the crazy name
mapping code. Simpler is better in this case.
The downside is that various sstate archives will change name so this forces a cache
rebuild. Given the other sstate changes going in at this time, this isn't really
a bad thing as things would rebuild anyway.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package_deb.bbclass')
-rw-r--r-- | meta/classes/package_deb.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/package_deb.bbclass b/meta/classes/package_deb.bbclass index d18c250ecc..82ff432f71 100644 --- a/meta/classes/package_deb.bbclass +++ b/meta/classes/package_deb.bbclass @@ -412,7 +412,6 @@ python do_package_deb () { } SSTATETASKS += "do_package_write_deb" -do_package_write_deb[sstate-name] = "deploy-deb" do_package_write_deb[sstate-inputdirs] = "${PKGWRITEDIRDEB}" do_package_write_deb[sstate-outputdirs] = "${DEPLOY_DIR_DEB}" |