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:
@@ -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() {
|
||||
:
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user