diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-27 12:33:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-28 23:31:17 +0000 |
commit | 4e6ee37e09c60e83c0dfd844ba9cf8a07507f099 (patch) | |
tree | e7428a9d12446f7a86fc54bcf76220ba662892e4 /meta/classes/packagegroup.bbclass | |
parent | d97c844f388bd4c52248fe597d5985ef20d5a96d (diff) | |
download | openembedded-core-contrib-4e6ee37e09c60e83c0dfd844ba9cf8a07507f099.tar.gz |
image/kernelsrc/packagegroups/recipes: Remove uneeded noexec tasks
We used to have issues removing tasks like do_fetch due to implications
for targets like world and universe. These have now been resolved.
Removing uneeded tasks has advantages compared to noexec since it means
that accidentally left in dependencies are no longer needed/processed
(e.g. do_patch depends on quilt-native).
This cleans up a number of cases which local analysis highlighted as
being unneeded leading to slightly cleaner task graphs.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/packagegroup.bbclass')
-rw-r--r-- | meta/classes/packagegroup.bbclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass index ad6c8b0e356..4af4a014b0a 100644 --- a/meta/classes/packagegroup.bbclass +++ b/meta/classes/packagegroup.bbclass @@ -40,12 +40,12 @@ python () { DEPCHAIN_DBGDEFAULTDEPS = "1" # We only need the packaging tasks - disable the rest -do_fetch[noexec] = "1" -do_unpack[noexec] = "1" -do_patch[noexec] = "1" -do_configure[noexec] = "1" -do_compile[noexec] = "1" -do_install[noexec] = "1" +deltask do_fetch +deltask do_unpack +deltask do_patch +deltask do_configure +deltask do_compile +deltask do_install deltask do_populate_sysroot python () { |