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:32:16 +0000 |
commit | 60662a2117373648a0a41b3556e180f7a7350a47 (patch) | |
tree | 3464da324e8cd57835ac2d7c644caef5d40a1ef7 /meta/recipes-core/glibc | |
parent | 48f79758ea1a4a2abac38566e411e8d0a6f66ac5 (diff) | |
download | poky-60662a2117373648a0a41b3556e180f7a7350a47.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.
(From OE-Core rev: 4e6ee37e09c60e83c0dfd844ba9cf8a07507f099)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glibc')
-rw-r--r-- | meta/recipes-core/glibc/glibc-collateral.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/glibc/glibc-collateral.inc b/meta/recipes-core/glibc/glibc-collateral.inc index 60655eba3c..6b32e4a815 100644 --- a/meta/recipes-core/glibc/glibc-collateral.inc +++ b/meta/recipes-core/glibc/glibc-collateral.inc | |||
@@ -9,9 +9,9 @@ HOMEPAGE = "http://www.gnu.org/software/libc/index.html" | |||
9 | # http://lists.openembedded.org/pipermail/openembedded-core/2015-January/100679.html | 9 | # http://lists.openembedded.org/pipermail/openembedded-core/2015-January/100679.html |
10 | ARM_INSTRUCTION_SET = "arm" | 10 | ARM_INSTRUCTION_SET = "arm" |
11 | 11 | ||
12 | do_fetch[noexec] = "1" | 12 | deltask do_fetch |
13 | do_unpack[noexec] = "1" | 13 | deltask do_unpack |
14 | do_patch[noexec] = "1" | 14 | deltask do_patch |
15 | do_configure[noexec] = "1" | 15 | do_configure[noexec] = "1" |
16 | do_compile[noexec] = "1" | 16 | do_compile[noexec] = "1" |
17 | 17 | ||