diff options
| -rw-r--r-- | bitbake/lib/bb/taskdata.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/taskdata.py b/bitbake/lib/bb/taskdata.py index 7dc1c0c82f..8a8924120f 100644 --- a/bitbake/lib/bb/taskdata.py +++ b/bitbake/lib/bb/taskdata.py | |||
| @@ -488,7 +488,7 @@ class TaskData: | |||
| 488 | missing_list = [self.build_names_index[targetid]] | 488 | missing_list = [self.build_names_index[targetid]] |
| 489 | else: | 489 | else: |
| 490 | missing_list = [self.build_names_index[targetid]] + missing_list | 490 | missing_list = [self.build_names_index[targetid]] + missing_list |
| 491 | providerlog.verbose("Target '%s' is unbuildable, removing...\nMissing or unbuildable dependency chain was: %s", self.build_names_index[targetid], missing_list) | 491 | logger.verbose("Target '%s' is unbuildable, removing...\nMissing or unbuildable dependency chain was: %s", self.build_names_index[targetid], missing_list) |
| 492 | self.failed_deps.append(targetid) | 492 | self.failed_deps.append(targetid) |
| 493 | dependees = self.get_dependees(targetid) | 493 | dependees = self.get_dependees(targetid) |
| 494 | for fnid in dependees: | 494 | for fnid in dependees: |
| @@ -501,7 +501,7 @@ class TaskData: | |||
| 501 | 501 | ||
| 502 | if self.abort and targetid in self.external_targets: | 502 | if self.abort and targetid in self.external_targets: |
| 503 | target = self.build_names_index[targetid] | 503 | target = self.build_names_index[targetid] |
| 504 | providerlog.error("Required build target '%s' has no buildable providers.\nMissing or unbuildable dependency chain was: %s", target, missing_list) | 504 | logger.error("Required build target '%s' has no buildable providers.\nMissing or unbuildable dependency chain was: %s", target, missing_list) |
| 505 | raise bb.providers.NoProvider(target) | 505 | raise bb.providers.NoProvider(target) |
| 506 | 506 | ||
| 507 | def remove_runtarget(self, targetid, missing_list = []): | 507 | def remove_runtarget(self, targetid, missing_list = []): |
| @@ -514,7 +514,7 @@ class TaskData: | |||
| 514 | else: | 514 | else: |
| 515 | missing_list = [self.run_names_index[targetid]] + missing_list | 515 | missing_list = [self.run_names_index[targetid]] + missing_list |
| 516 | 516 | ||
| 517 | providerlog.info("Runtime target '%s' is unbuildable, removing...\nMissing or unbuildable dependency chain was: %s", self.run_names_index[targetid], missing_list) | 517 | logger.info("Runtime target '%s' is unbuildable, removing...\nMissing or unbuildable dependency chain was: %s", self.run_names_index[targetid], missing_list) |
| 518 | self.failed_rdeps.append(targetid) | 518 | self.failed_rdeps.append(targetid) |
| 519 | dependees = self.get_rdependees(targetid) | 519 | dependees = self.get_rdependees(targetid) |
| 520 | for fnid in dependees: | 520 | for fnid in dependees: |
