diff options
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r-- | bitbake/lib/bb/command.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 8663eed933..f2ee587161 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -781,3 +781,9 @@ class CommandsAsync: | |||
781 | bb.event.fire(bb.event.FindSigInfoResult(res), command.cooker.databuilder.mcdata[mc]) | 781 | bb.event.fire(bb.event.FindSigInfoResult(res), command.cooker.databuilder.mcdata[mc]) |
782 | command.finishAsyncCommand() | 782 | command.finishAsyncCommand() |
783 | findSigInfo.needcache = False | 783 | findSigInfo.needcache = False |
784 | |||
785 | def getTaskSignatures(self, command, params): | ||
786 | res = command.cooker.getTaskSignatures(params[0], params[1]) | ||
787 | bb.event.fire(bb.event.GetTaskSignatureResult(res), command.cooker.data) | ||
788 | command.finishAsyncCommand() | ||
789 | getTaskSignatures.needcache = True | ||