summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-10 08:05:38 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-12 13:41:42 +0100
commit719b4e733be0b6f2bdb7eb176f866498cd6a9800 (patch)
treef05e1a401d55f14f41f72455d83361a0c2422cf6 /bitbake
parent455c7b43936b38c4eca7c777f4eb92b5a6e49313 (diff)
downloadpoky-719b4e733be0b6f2bdb7eb176f866498cd6a9800.tar.gz
bitbake: buildinfohelper: Drop unused variables
(Bitbake rev: 97e150550a3807c60cfa685abda8dccafc0a1268) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit d720dfa40620e64a557edef527148d58fcb1d858) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/buildinfohelper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index c4ca267783..129bb329c3 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -496,7 +496,7 @@ class ORMWrapper(object):
496 if not parent_path: 496 if not parent_path:
497 parent_path = "/" 497 parent_path = "/"
498 parent_obj = self._cached_get(Target_File, target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY) 498 parent_obj = self._cached_get(Target_File, target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY)
499 tf_obj = Target_File.objects.create( 499 Target_File.objects.create(
500 target = target_obj, 500 target = target_obj,
501 path = path, 501 path = path,
502 size = size, 502 size = size,
@@ -561,7 +561,7 @@ class ORMWrapper(object):
561 561
562 parent_obj = Target_File.objects.get(target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY) 562 parent_obj = Target_File.objects.get(target = target_obj, path = parent_path, inodetype = Target_File.ITYPE_DIRECTORY)
563 563
564 tf_obj = Target_File.objects.create( 564 Target_File.objects.create(
565 target = target_obj, 565 target = target_obj,
566 path = path, 566 path = path,
567 size = size, 567 size = size,