mirror of
https://git.yoctoproject.org/poky
synced 2026-06-07 03:04:04 +00:00
staging: Fix broken debug code
The code currently only prints a single depchain due to overwriting data instead of appending. Fix this. (From OE-Core rev: 48af19cdfa92aa9d336da50afe4ed3dde92daecc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -301,7 +301,7 @@ python extend_recipe_sysroot() {
|
||||
data = ""
|
||||
for dep in deptree:
|
||||
deps = " " + "\n ".join(deptree[dep][3]) + "\n"
|
||||
data = "%s:\n %s\n %s\n%s %s\n %s\n" % (deptree[dep][0], deptree[dep][1], deptree[dep][2], deps, deptree[dep][4], deptree[dep][5])
|
||||
data = data + "%s:\n %s\n %s\n%s %s\n %s\n" % (deptree[dep][0], deptree[dep][1], deptree[dep][2], deps, deptree[dep][4], deptree[dep][5])
|
||||
return data
|
||||
|
||||
#bb.note("Full dep tree is:\n%s" % print_dep_tree(taskdepdata))
|
||||
|
||||
Reference in New Issue
Block a user