From 612173b48fb40f0ae8c5a73ea13749a2670c7cd4 Mon Sep 17 00:00:00 2001 From: Dongxiao Xu Date: Wed, 29 Feb 2012 22:15:17 +0800 Subject: command.py: remove the resolve parameter in generateTargetsTree Remove the "resolve" parameter since the original resolve=False option is no longer be used. (Bitbake rev: dadce609149cfb09ecdc53bfe1f416a3f57a5033) Signed-off-by: Dongxiao Xu Signed-off-by: Richard Purdie --- bitbake/lib/bb/command.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'bitbake/lib/bb/command.py') diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 06e886973b..1799f1cc3c 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py @@ -242,21 +242,11 @@ class CommandsAsync: included in the package list. If pkg_list provided use that list (plus any extras brought in by klass) rather than generating a tree for all packages. - - Add a new option "resolve" to indicate if we need to resolve the - replacement for "virtual/xxx" like pn. """ klass = params[0] - resolve = False - if len(params) > 2: - pkg_list = params[1] - resolve = params[2] - elif len(params) > 1: - pkg_list = params[1] - else: - pkg_list = [] + pkg_list = params[1] - command.cooker.generateTargetsTree(klass, pkg_list, resolve) + command.cooker.generateTargetsTree(klass, pkg_list) command.finishAsyncCommand() generateTargetsTree.needcache = True -- cgit v1.2.3-54-g00ecf