summaryrefslogtreecommitdiffstats
path: root/lib/bb/shell.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2006-08-20 21:52:23 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2006-08-20 21:52:23 +0000
commita6e26ec83270de1ae9993c054be25e4ccbde1a8e (patch)
tree6693ea9b7afb26a27cd7a9abc41f27b5d06178b4 /lib/bb/shell.py
parentb1bd6a2abfa177520991263efc4a5b365a625a0c (diff)
downloadbitbake-a6e26ec83270de1ae9993c054be25e4ccbde1a8e.tar.gz
bitbake/lib/bb/taskdata.py:
bitbake/lib/bb/__init__.py: bitbake/lib/bb/shell.py: bitbake/lib/bb/runqueue.py: bitbake/lib/bb/msg.py: bitbake/MANIFEST: bitbake/bin/bitbake: Major rewrite and modularisation of the dependecy code. The code in bin/bitbake is replaced by the taskdata and runqueue modules. The code is designed to support multiple threads (although the initial threading algothirm is simplistic). The new code is aimed to be maintainable and debuggable (once msy.py is finished).
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 b962b582d..889d90fb1 100644
--- a/lib/bb/shell.py
+++ b/lib/bb/shell.py
@@ -232,7 +232,7 @@ class BitBakeShellCommands:
item = data.getVar('PN', bbfile_data, 1)
data.setVar( "_task_cache", [], bbfile_data ) # force
try:
- cooker.tryBuildPackage( os.path.abspath( bf ), item, bbfile_data )
+ cooker.tryBuildPackage( os.path.abspath( bf ), item, cmd, bbfile_data, True )
except build.EventException, e:
print "ERROR: Couldn't build '%s'" % name
global last_exception