1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

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>
This commit is contained in:
Richard Purdie
2012-07-02 12:27:46 +00:00
parent 024d587555
commit 5c581b2610
3 changed files with 7 additions and 14 deletions
+2 -8
View File
@@ -46,20 +46,14 @@ python do_checkuri() {
}
addtask checkuriall after do_checkuri
do_checkuriall[recrdeptask] = "do_checkuri"
do_checkuriall[recrdeptask] = "do_checkuriall do_checkuri"
do_checkuriall[nostamp] = "1"
do_checkuriall() {
:
}
addtask fetchall after do_fetch
do_fetchall[recrdeptask] = "do_fetch"
do_fetchall[recrdeptask] = "do_fetchall do_fetch"
do_fetchall() {
:
}
addtask buildall after do_build
do_buildall[recrdeptask] = "do_build"
do_buildall() {
:
}