diff options
| author | Joshua Watt <JPEWhacker@gmail.com> | 2020-07-23 08:20:12 -0500 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-07-25 15:11:48 +0100 |
| commit | 6c2bb4a4ad097e3f24e59731a551c2e33f97d4b3 (patch) | |
| tree | 64e36970c38edfa3335bbb38f7417e75c550c2e1 /bitbake | |
| parent | 93563b5bd4d2c64ef186c5ba5fe59f66b6f4c702 (diff) | |
| download | poky-6c2bb4a4ad097e3f24e59731a551c2e33f97d4b3.tar.gz | |
bitbake: bitbake: command: Handle multiconfig in findSigInfo
Changes the findSigInfo command to accept a recipe specified with the
multiconfig prefix
(Bitbake rev: 379951b6417eacbafc92ac1413ae1358bafdddfb)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
| -rw-r--r-- | bitbake/lib/bb/command.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 805ed9216c..48a7f1a158 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
| @@ -723,10 +723,10 @@ class CommandsAsync: | |||
| 723 | """ | 723 | """ |
| 724 | Find signature info files via the signature generator | 724 | Find signature info files via the signature generator |
| 725 | """ | 725 | """ |
| 726 | pn = params[0] | 726 | (mc, pn) = bb.runqueue.split_mc(params[0]) |
| 727 | taskname = params[1] | 727 | taskname = params[1] |
| 728 | sigs = params[2] | 728 | sigs = params[2] |
| 729 | res = bb.siggen.find_siginfo(pn, taskname, sigs, command.cooker.data) | 729 | res = bb.siggen.find_siginfo(pn, taskname, sigs, command.cooker.databuilder.mcdata[mc]) |
| 730 | bb.event.fire(bb.event.FindSigInfoResult(res), command.cooker.data) | 730 | bb.event.fire(bb.event.FindSigInfoResult(res), command.cooker.databuilder.mcdata[mc]) |
| 731 | command.finishAsyncCommand() | 731 | command.finishAsyncCommand() |
| 732 | findSigInfo.needcache = False | 732 | findSigInfo.needcache = False |
