diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-24 16:12:07 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-24 16:18:57 +0000 |
commit | cf70e15f063716f3227d467ab1f4bfc0018286f6 (patch) | |
tree | b8477b4c9992f2dd32a313c5e4cd3fa1aa2a1069 /meta/classes/package_ipk.bbclass | |
parent | f9d04fcab577d1f48329a4cfe51b1e73fa5d9ba2 (diff) | |
download | openembedded-core-cf70e15f063716f3227d467ab1f4bfc0018286f6.tar.gz openembedded-core-cf70e15f063716f3227d467ab1f4bfc0018286f6.tar.bz2 openembedded-core-cf70e15f063716f3227d467ab1f4bfc0018286f6.zip |
package: Drop do_package_write task
The reasons this task was introduced are lost in the mists of time. It
allowed for the a single "package_write" task instead of spelling out
the explicit package backends, however in all but one case we do that
anyway.
As such as might as well give in and delete the task, converting that
single reference into explicit dependencies.
This gives bitbake a bit less work to to when processing the runqueue
since there are less tasks (but more dependencies in some cases).
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package_ipk.bbclass')
-rw-r--r-- | meta/classes/package_ipk.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass index 7cf2c8af2d..aab31e5296 100644 --- a/meta/classes/package_ipk.bbclass +++ b/meta/classes/package_ipk.bbclass @@ -257,3 +257,5 @@ addtask package_write_ipk before do_package_write after do_packagedata do_packag PACKAGEINDEXDEPS += "opkg-utils-native:do_populate_sysroot" PACKAGEINDEXDEPS += "opkg-native:do_populate_sysroot" + +do_build[recrdeptask] += "do_package_write_ipk" |