summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/oe-check-sstate2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-check-sstate b/scripts/oe-check-sstate
index 7f9f835da4..4187e77458 100755
--- a/scripts/oe-check-sstate
+++ b/scripts/oe-check-sstate
@@ -50,7 +50,7 @@ def check(args):
50 env['TMPDIR:forcevariable'] = tmpdir 50 env['TMPDIR:forcevariable'] = tmpdir
51 51
52 try: 52 try:
53 cmd = ['bitbake', '--dry-run'] + args.target 53 cmd = ['bitbake', '--dry-run', '--runall=build'] + args.target
54 output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, env=env) 54 output = subprocess.check_output(cmd, stderr=subprocess.STDOUT, env=env)
55 55
56 task_re = re.compile('NOTE: Running setscene task [0-9]+ of [0-9]+ \(([^)]+)\)') 56 task_re = re.compile('NOTE: Running setscene task [0-9]+ of [0-9]+ \(([^)]+)\)')