diff options
author | Ross Burton <ross.burton@intel.com> | 2014-12-04 15:13:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-05 17:43:15 +0000 |
commit | 8e68ebbddc2bc41eb6cb607c51d6a80c54c4199d (patch) | |
tree | 5f4869379f0fe1fa234172756b39722e01743b8e /meta/recipes-devtools/gcc | |
parent | c52f380b1df716517a585075f59546d559cc1ebb (diff) | |
download | openembedded-core-8e68ebbddc2bc41eb6cb607c51d6a80c54c4199d.tar.gz openembedded-core-8e68ebbddc2bc41eb6cb607c51d6a80c54c4199d.tar.bz2 openembedded-core-8e68ebbddc2bc41eb6cb607c51d6a80c54c4199d.zip |
gcc: stub do_fetch instead of removing it
Whilst gcc doesn't have any source to fetch, it still needs a fetch task so that
a world fetch can run without errors. So instead of deleting the fetch task,
stub it.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-shared-source.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-shared-source.inc b/meta/recipes-devtools/gcc/gcc-shared-source.inc index ec30865c6a..cb5d9071b6 100644 --- a/meta/recipes-devtools/gcc/gcc-shared-source.inc +++ b/meta/recipes-devtools/gcc/gcc-shared-source.inc @@ -1,4 +1,7 @@ -deltask do_fetch +do_fetch() { + : +} +do_fetch[noexec] = "1" deltask do_unpack deltask do_patch |