aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Crowe <mac@mcrowe.com>2018-11-05 14:29:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-11-05 17:34:04 +0000
commit8e587386b0b3a0ed11edf71dfbe9fb508f60d0b3 (patch)
tree1e5d699ed2f4c134d56541a05016b2023a561260
parentdb46fb2755a4b1033ab60051ce511cc9dd7e34fb (diff)
downloadbitbake-contrib-8e587386b0b3a0ed11edf71dfbe9fb508f60d0b3.tar.gz
siggen: Correct format argument substitution
Use % operator to ensure that the dependency is substituted into the error message correctly. Signed-off-by: Mike Crowe <mac@mcrowe.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/siggen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index 03c824ec3..c619b596d 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -185,7 +185,7 @@ class SignatureGeneratorBasic(SignatureGenerator):
if not self.rundep_check(fn, recipename, task, dep, depname, dataCache):
continue
if dep not in self.taskhash:
- bb.fatal("%s is not in taskhash, caller isn't calling in dependency order?", dep)
+ bb.fatal("%s is not in taskhash, caller isn't calling in dependency order?" % dep)
data = data + self.taskhash[dep]
self.runtaskdeps[k].append(dep)