diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-02 12:27:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-04 14:48:13 +0100 |
commit | 5c581b2610cb84362c00ee32754a87acfd15a64d (patch) | |
tree | d9bacdd6b88fb5f3ba2384d0c56181a5bdfe231c /meta/classes/utility-tasks.bbclass | |
parent | 024d587555195f8d26666e9d8659aec0a5d03796 (diff) | |
download | poky-5c581b2610cb84362c00ee32754a87acfd15a64d.tar.gz |
meta/classes: Update recrdeptask fields for recursive dependency handling changes in bitbake
This also deletes the buildall task since I seen usecases for it.
(From OE-Core rev: 8229fb5d7205f5e5b198ab2860fbcc02054476eb)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/utility-tasks.bbclass')
-rw-r--r-- | meta/classes/utility-tasks.bbclass | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/meta/classes/utility-tasks.bbclass b/meta/classes/utility-tasks.bbclass index cbb000a1e3..6c2232ec57 100644 --- a/meta/classes/utility-tasks.bbclass +++ b/meta/classes/utility-tasks.bbclass | |||
@@ -46,20 +46,14 @@ python do_checkuri() { | |||
46 | } | 46 | } |
47 | 47 | ||
48 | addtask checkuriall after do_checkuri | 48 | addtask checkuriall after do_checkuri |
49 | do_checkuriall[recrdeptask] = "do_checkuri" | 49 | do_checkuriall[recrdeptask] = "do_checkuriall do_checkuri" |
50 | do_checkuriall[nostamp] = "1" | 50 | do_checkuriall[nostamp] = "1" |
51 | do_checkuriall() { | 51 | do_checkuriall() { |
52 | : | 52 | : |
53 | } | 53 | } |
54 | 54 | ||
55 | addtask fetchall after do_fetch | 55 | addtask fetchall after do_fetch |
56 | do_fetchall[recrdeptask] = "do_fetch" | 56 | do_fetchall[recrdeptask] = "do_fetchall do_fetch" |
57 | do_fetchall() { | 57 | do_fetchall() { |
58 | : | 58 | : |
59 | } | 59 | } |
60 | |||
61 | addtask buildall after do_build | ||
62 | do_buildall[recrdeptask] = "do_build" | ||
63 | do_buildall() { | ||
64 | : | ||
65 | } | ||