aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake-dev
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-07-23 19:51:56 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2009-07-23 19:51:56 +0100
commit1379a98b4de36b0192390a9f988ab3dcc99dcef0 (patch)
tree332a4aa554b778141d5bb69ac8e0a8f3e0de2a53 /bitbake-dev
parent255f45be57b2209f81ee513ebc43ce7f808c2f2b (diff)
downloadopenembedded-core-contrib-1379a98b4de36b0192390a9f988ab3dcc99dcef0.tar.gz
bitbake-dev: Remve the need for the cache for -e -b options
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake-dev')
-rw-r--r--bitbake-dev/lib/bb/command.py16
-rw-r--r--bitbake-dev/lib/bb/cooker.py6
2 files changed, 12 insertions, 10 deletions
diff --git a/bitbake-dev/lib/bb/command.py b/bitbake-dev/lib/bb/command.py
index 4cab78e43b..9226a2772f 100644
--- a/bitbake-dev/lib/bb/command.py
+++ b/bitbake-dev/lib/bb/command.py
@@ -203,23 +203,25 @@ class CommandsAsync:
command.finishAsyncCommand()
showVersions.needcache = True
- def showEnvironmentPackage(self, command, params):
+ def showEnvironmentTarget(self, command, params):
"""
- Print the environment of a recipe
+ Print the environment of a target recipe
+ (needs the cache to work out which recipe to use)
"""
- bfile = params[0]
- pkg = params[1]
+ pkg = params[0]
- command.cooker.showEnvironment(bfile, pkg)
+ command.cooker.showEnvironment(None, pkg)
command.finishAsyncCommand()
- showEnvironmentPackage.needcache = True
+ showEnvironmentTarget.needcache = True
def showEnvironment(self, command, params):
"""
Print the standard environment
+ or if specified the environment for a specified recipe
"""
+ bfile = params[0]
- command.cooker.showEnvironment()
+ command.cooker.showEnvironment(bfile)
command.finishAsyncCommand()
showEnvironment.needcache = False
diff --git a/bitbake-dev/lib/bb/cooker.py b/bitbake-dev/lib/bb/cooker.py
index dceebb12d5..bec6c3535c 100644
--- a/bitbake-dev/lib/bb/cooker.py
+++ b/bitbake-dev/lib/bb/cooker.py
@@ -141,10 +141,10 @@ class BBCooker:
bb.error("Only one target can be used with the --environment option.")
elif self.configuration.buildfile and len(self.configuration.pkgs_to_build) > 0:
bb.error("No target should be used with the --environment and --buildfile options.")
- elif self.configuration.buildfile is not None or len(self.configuration.pkgs_to_build) > 0:
- self.commandlineAction = ["showEnvironmentPackage", self.configuration.buildfile, self.configuration.pkgs_to_build]
+ elif len(self.configuration.pkgs_to_build) > 0:
+ self.commandlineAction = ["showEnvironmentTarget", self.configuration.pkgs_to_build]
else:
- self.commandlineAction = ["showEnvironment"]
+ self.commandlineAction = ["showEnvironment", self.configuration.buildfile]
elif self.configuration.buildfile is not None:
self.commandlineAction = ["buildFile", self.configuration.buildfile, self.configuration.cmd]
elif self.configuration.show_versions: