diff options
author | Joshua Lock <josh@linux.intel.com> | 2011-06-30 23:02:54 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-01 17:17:36 +0100 |
commit | 22d8fb1fc3be67ef01a7bbe161d9b303fcad4e53 (patch) | |
tree | e7ce7a5bb8c64a868367980f09c4949bed57a477 /bitbake/lib | |
parent | 97e0beb393b9c3f2eeedc409bfc4924357d1c47e (diff) | |
download | poky-22d8fb1fc3be67ef01a7bbe161d9b303fcad4e53.tar.gz |
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 <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 4 |
1 files changed, 2 insertions, 2 deletions
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: | |||
594 | Generate a dependency tree of buildable targets | 594 | Generate a dependency tree of buildable targets |
595 | Generate an event with the result | 595 | Generate an event with the result |
596 | """ | 596 | """ |
597 | # if the caller hasn't specified a pkgs list default to world | 597 | # if the caller hasn't specified a pkgs list default to universe |
598 | if not len(pkgs): | 598 | if not len(pkgs): |
599 | pkgs = ['world'] | 599 | pkgs = ['universe'] |
600 | # if inherited_class passed ensure all recipes which inherit the | 600 | # if inherited_class passed ensure all recipes which inherit the |
601 | # specified class are included in pkgs | 601 | # specified class are included in pkgs |
602 | if klass: | 602 | if klass: |