summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2006-01-12 14:46:19 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2006-01-12 14:46:19 +0000
commit7433c508fe6b772cea492826210a48774d11c68d (patch)
tree0b89600680863e254e9672120301ccda2f92d0d4
parenta5af872e89bab2acd13a3d6da45d1cfec4c5fbd2 (diff)
downloadbitbake-7433c508fe6b772cea492826210a48774d11c68d.tar.gz
bitbake/lib/bb/shell.py:
-Patch by ph5 to call the build method with the right amount of parameters.
-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 24406bb80..b86dc9753 100644
--- a/lib/bb/shell.py
+++ b/lib/bb/shell.py
@@ -157,7 +157,7 @@ class BitBakeShellCommands:
for name in names:
try:
- cooker.buildProvider( name )
+ cooker.buildProvider( name, data.getVar("BUILD_ALL_DEPS", cooker.configuration.data, True) )
except build.EventException, e:
print "ERROR: Couldn't build '%s'" % name
global last_exception