summaryrefslogtreecommitdiffstats
path: root/lib/bb/shell.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-05-11 21:49:13 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-05-11 21:49:13 +0000
commit43d486cd8bcc95eb60bd1530b462b1c43618da0f (patch)
treed094c6828f0631f912ae95938310419114964d81 /lib/bb/shell.py
parent51e7a28a098a194e6cdf10532e6b1ac586669a0f (diff)
downloadbitbake-43d486cd8bcc95eb60bd1530b462b1c43618da0f.tar.gz
data.py: Make sure allowed variables inherited from the environment are exported again (from Poky)
shell.py: When running a stage task in bbshell, run populate_staging, not the stage task (from Poky)
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 55bae25d4..51dae8457 100644
--- a/lib/bb/shell.py
+++ b/lib/bb/shell.py
@@ -510,7 +510,7 @@ SRC_URI = ""
def stage( self, params ):
"""Execute 'stage' on a providee"""
- self.build( params, "stage" )
+ self.build( params, "populate_staging" )
stage.usage = "<providee>"
def status( self, params ):