From 22d8fb1fc3be67ef01a7bbe161d9b303fcad4e53 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Thu, 30 Jun 2011 23:02:54 -0700 Subject: cooker: switch to new universe target rather than world When the caller doesn't specify a pkgs list we want to generate the tree of all available packages. To do so use the new universe target list. (Bitbake rev: 26b0c538ad4f677e0d45a66484c2dca073459282) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/bb/cooker.py') diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 1b31cea880..aceb084b75 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -594,9 +594,9 @@ class BBCooker: Generate a dependency tree of buildable targets Generate an event with the result """ - # if the caller hasn't specified a pkgs list default to world + # if the caller hasn't specified a pkgs list default to universe if not len(pkgs): - pkgs = ['world'] + pkgs = ['universe'] # if inherited_class passed ensure all recipes which inherit the # specified class are included in pkgs if klass: -- cgit v1.2.3-54-g00ecf