summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2011-07-25 14:54:42 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-27 16:54:04 +0100
commit965fbe483b9bd875df8839da8d99d671a4ed9fb7 (patch)
treeb989f5156c8ef2f293a9f8fab9a8bcfa3d21f834
parentdaed107ce188c6ae53a3d612de58885f23b7257e (diff)
downloadpoky-965fbe483b9bd875df8839da8d99d671a4ed9fb7.tar.gz
bitbake/taskdata: fix incorrect usage of rdependees instead of dependees
This looked like a copy-paste error - the code around is dealing with depends and not rdepends. (Bitbake rev: bb688635c2050da3cbbaa5aa5b00e882887695de) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/taskdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/taskdata.py b/bitbake/lib/bb/taskdata.py
index e857f9afcb..79602b6389 100644
--- a/bitbake/lib/bb/taskdata.py
+++ b/bitbake/lib/bb/taskdata.py
@@ -387,7 +387,7 @@ class TaskData:
387 return 387 return
388 388
389 if not item in dataCache.providers: 389 if not item in dataCache.providers:
390 bb.event.fire(bb.event.NoProvider(item, dependees=self.get_rdependees_str(item), reasons=self.get_reasons(item)), cfgData) 390 bb.event.fire(bb.event.NoProvider(item, dependees=self.get_dependees_str(item), reasons=self.get_reasons(item)), cfgData)
391 raise bb.providers.NoProvider(item) 391 raise bb.providers.NoProvider(item)
392 392
393 if self.have_build_target(item): 393 if self.have_build_target(item):