diff options
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r-- | bitbake/lib/bb/command.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index eb7c86f4fe..c06ab072ad 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -548,11 +548,14 @@ class CommandsAsync: | |||
548 | bfile = params[0] | 548 | bfile = params[0] |
549 | task = params[1] | 549 | task = params[1] |
550 | if len(params) > 2: | 550 | if len(params) > 2: |
551 | hidewarning = params[2] | 551 | internal = params[2] |
552 | else: | 552 | else: |
553 | hidewarning = False | 553 | internal = False |
554 | 554 | ||
555 | command.cooker.buildFile(bfile, task, hidewarning) | 555 | if internal: |
556 | command.cooker.buildFileInternal(bfile, task, fireevents=False, quietlog=True) | ||
557 | else: | ||
558 | command.cooker.buildFile(bfile, task) | ||
556 | buildFile.needcache = False | 559 | buildFile.needcache = False |
557 | 560 | ||
558 | def buildTargets(self, command, params): | 561 | def buildTargets(self, command, params): |