summaryrefslogtreecommitdiffstats
path: root/lib/bb/shell.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2007-01-07 17:26:23 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2007-01-07 17:26:23 +0000
commit12f9999a2042c582197f96eb5f5fab411133e753 (patch)
tree848f06ddeb1741d2361932662eb6c131f0a4c6d5 /lib/bb/shell.py
parent1a678c62b504b2cf8b20c6fdfbf2de2c634f5d7b (diff)
downloadbitbake-12f9999a2042c582197f96eb5f5fab411133e753.tar.gz
runqueue.py: Pass cooker to prepare_runqueue (for now)
Diffstat (limited to 'lib/bb/shell.py')
-rw-r--r--lib/bb/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/shell.py b/lib/bb/shell.py
index 2f908c213..7919145c1 100644
--- a/lib/bb/shell.py
+++ b/lib/bb/shell.py
@@ -171,7 +171,7 @@ class BitBakeShellCommands:
td.add_unresolved(cooker.configuration.data, cooker.status)
rq = runqueue.RunQueue()
- rq.prepare_runqueue(cooker.configuration.data, cooker.status, td, tasks)
+ rq.prepare_runqueue(cooker, cooker.configuration.data, cooker.status, td, tasks)
rq.execute_runqueue(cooker, cooker.configuration.data, cooker.status, td, tasks)
except Providers.NoProvider: