summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/tinfoil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py
index 14a2271cd2..928333a500 100644
--- a/bitbake/lib/bb/tinfoil.py
+++ b/bitbake/lib/bb/tinfoil.py
@@ -368,9 +368,9 @@ class Tinfoil:
368 taskdata = bb.taskdata.TaskData(None, skiplist=skiplist) 368 taskdata = bb.taskdata.TaskData(None, skiplist=skiplist)
369 skipreasons = taskdata.get_reasons(pn) 369 skipreasons = taskdata.get_reasons(pn)
370 if skipreasons: 370 if skipreasons:
371 raise bb.providers.NoProvider(skipreasons) 371 raise bb.providers.NoProvider('%s is unavailable:\n %s' % (pn, ' \n'.join(skipreasons)))
372 else: 372 else:
373 raise bb.providers.NoProvider('Unable to find any recipe file matching %s' % pn) 373 raise bb.providers.NoProvider('Unable to find any recipe file matching "%s"' % pn)
374 return best[3] 374 return best[3]
375 375
376 def get_file_appends(self, fn): 376 def get_file_appends(self, fn):