summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/siggen.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
-rw-r--r--bitbake/lib/bb/siggen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 03c824ec38..c619b596d8 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -185,7 +185,7 @@ class SignatureGeneratorBasic(SignatureGenerator):
185 if not self.rundep_check(fn, recipename, task, dep, depname, dataCache): 185 if not self.rundep_check(fn, recipename, task, dep, depname, dataCache):
186 continue 186 continue
187 if dep not in self.taskhash: 187 if dep not in self.taskhash:
188 bb.fatal("%s is not in taskhash, caller isn't calling in dependency order?", dep) 188 bb.fatal("%s is not in taskhash, caller isn't calling in dependency order?" % dep)
189 data = data + self.taskhash[dep] 189 data = data + self.taskhash[dep]
190 self.runtaskdeps[k].append(dep) 190 self.runtaskdeps[k].append(dep)
191 191