summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 352838b0aa..3b68c1aaa2 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -549,8 +549,12 @@ class CommandsAsync:
549 """ 549 """
550 bfile = params[0] 550 bfile = params[0]
551 task = params[1] 551 task = params[1]
552 if len(params) > 2:
553 hidewarning = params[2]
554 else:
555 hidewarning = False
552 556
553 command.cooker.buildFile(bfile, task) 557 command.cooker.buildFile(bfile, task, hidewarning)
554 buildFile.needcache = False 558 buildFile.needcache = False
555 559
556 def buildTargets(self, command, params): 560 def buildTargets(self, command, params):