diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-21 20:46:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-22 11:35:23 +0000 |
commit | 70f18264cec44914f6f790890281939ddbcea3b1 (patch) | |
tree | bf8f37b7bd57fcbc56ac1d237b8335fb0f16af04 /bitbake/lib/bb/data.py | |
parent | f4a924897544e634aaa61b6d9863b46bfb799577 (diff) | |
download | poky-70f18264cec44914f6f790890281939ddbcea3b1.tar.gz |
bitbake: data/cooker: Sort output data shown by -e
Displaying the environment data in a sorted manner makes it easier
to compare data between different setups and means you can know
where to find specific entries.
(Bitbake rev: baa417e44b009149eb1dfb07d5a488740b6e68ef)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/data.py')
-rw-r--r-- | bitbake/lib/bb/data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py index d145f1b0ab..a85cb3abff 100644 --- a/bitbake/lib/bb/data.py +++ b/bitbake/lib/bb/data.py | |||
@@ -196,7 +196,7 @@ def emit_env(o=sys.__stdout__, d = init(), all=False): | |||
196 | keys = sorted((key for key in d.keys() if not key.startswith("__")), key=isfunc) | 196 | keys = sorted((key for key in d.keys() if not key.startswith("__")), key=isfunc) |
197 | grouped = groupby(keys, isfunc) | 197 | grouped = groupby(keys, isfunc) |
198 | for isfunc, keys in grouped: | 198 | for isfunc, keys in grouped: |
199 | for key in keys: | 199 | for key in sorted(keys): |
200 | emit_var(key, o, d, all and not isfunc) and o.write('\n') | 200 | emit_var(key, o, d, all and not isfunc) and o.write('\n') |
201 | 201 | ||
202 | def exported_keys(d): | 202 | def exported_keys(d): |