From 1379a98b4de36b0192390a9f988ab3dcc99dcef0 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 23 Jul 2009 19:51:56 +0100 Subject: bitbake-dev: Remve the need for the cache for -e -b options Signed-off-by: Richard Purdie --- bitbake-dev/lib/bb/command.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'bitbake-dev/lib/bb/command.py') 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 -- cgit v1.2.3