diff options
author | Mike Crowe <mac@mcrowe.com> | 2018-11-05 14:29:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-07 23:08:55 +0000 |
commit | b8e08c65192c79244d0dff2bf81c5797d4ef2a36 (patch) | |
tree | e026c1e791d4529d80318104a0c7a359c4b74f19 | |
parent | b322b69a97895e92139e6006d6a2f446fed902d8 (diff) | |
download | poky-b8e08c65192c79244d0dff2bf81c5797d4ef2a36.tar.gz |
bitbake: siggen: Correct format argument substitution
Use % operator to ensure that the dependency is substituted into the error
message correctly.
(Bitbake rev: 8e587386b0b3a0ed11edf71dfbe9fb508f60d0b3)
Signed-off-by: Mike Crowe <mac@mcrowe.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/siggen.py | 2 |
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 | ||