mirror of
https://git.yoctoproject.org/poky
synced 2026-04-02 17:02:21 +02:00
classes/autotools: avoid error if recipe is first in task dependency tree
If the recipe being built is listed first in BB_TASKDEPDATA (i.e. item 0) this is still valid and should not trigger an error. (From OE-Core rev: 945c98969bcfe5516b89ac6dfbe4552fb5d68a48) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
6a6f50b7f1
commit
76070017cd
@@ -148,7 +148,7 @@ python autotools_copy_aclocals () {
|
||||
if data[1] == "do_configure" and data[0] == pn:
|
||||
start = dep
|
||||
break
|
||||
if not start:
|
||||
if start is None:
|
||||
bb.fatal("Couldn't find ourself in BB_TASKDEPDATA?")
|
||||
|
||||
# We need to find configure tasks which are either from <target> -> <target>
|
||||
|
||||
Reference in New Issue
Block a user