diff options
author | Ola x Nilsson <ola.x.nilsson@axis.com> | 2017-09-04 16:18:37 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-11 17:30:28 +0100 |
commit | 9bf6b1127ad96cb197ba4c226c01f059fd6ec6ec (patch) | |
tree | e226a37e5b2c0b0594765e1755d2dfd3e74f7af0 /scripts/lib | |
parent | a2b8d36daa45c1ce03df74032b0b77b2bc67af36 (diff) | |
download | poky-9bf6b1127ad96cb197ba4c226c01f059fd6ec6ec.tar.gz |
devtool: status: Sort entries before printing
Sorted entries are easier to read.
(From OE-Core rev: d0a123ec564f6d36977e472f8bc63f9c050ee616)
Signed-off-by: Ola x Nilsson <olani@axis.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/devtool/standard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 174cc861e1..0998fa7055 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -1597,7 +1597,7 @@ def update_recipe(args, config, basepath, workspace): | |||
1597 | def status(args, config, basepath, workspace): | 1597 | def status(args, config, basepath, workspace): |
1598 | """Entry point for the devtool 'status' subcommand""" | 1598 | """Entry point for the devtool 'status' subcommand""" |
1599 | if workspace: | 1599 | if workspace: |
1600 | for recipe, value in workspace.items(): | 1600 | for recipe, value in sorted(workspace.items()): |
1601 | recipefile = value['recipefile'] | 1601 | recipefile = value['recipefile'] |
1602 | if recipefile: | 1602 | if recipefile: |
1603 | recipestr = ' (%s)' % recipefile | 1603 | recipestr = ' (%s)' % recipefile |