diff options
-rw-r--r-- | bitbake/lib/bb/ui/buildinfohelper.py | 4 |
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, |