diff options
Diffstat (limited to 'bitbake/lib/bb')
-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: |