diff options
author | Ross Burton <ross.burton@intel.com> | 2014-12-04 15:13:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-06 14:13:08 +0000 |
commit | ebe7b52c90b8cc7626f93d6771412848825905ce (patch) | |
tree | b090be60ec9950d4de9b22dacddac47998fda3f0 /meta | |
parent | 6e9af42063c4135d3e72406a22d762425e5bebfd (diff) | |
download | openembedded-core-ebe7b52c90b8cc7626f93d6771412848825905ce.tar.gz openembedded-core-ebe7b52c90b8cc7626f93d6771412848825905ce.tar.bz2 openembedded-core-ebe7b52c90b8cc7626f93d6771412848825905ce.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.
(From OE-Core rev: 8e68ebbddc2bc41eb6cb607c51d6a80c54c4199d)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta')
-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 |