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/cooker.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/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 662a7ac071..e3f5317f7c 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -648,7 +648,7 @@ class BBCooker: | |||
648 | 648 | ||
649 | # emit the metadata which isnt valid shell | 649 | # emit the metadata which isnt valid shell |
650 | data.expandKeys(envdata) | 650 | data.expandKeys(envdata) |
651 | for e in envdata.keys(): | 651 | for e in sorted(envdata.keys()): |
652 | if envdata.getVarFlag(e, 'func', False) and envdata.getVarFlag(e, 'python', False): | 652 | if envdata.getVarFlag(e, 'func', False) and envdata.getVarFlag(e, 'python', False): |
653 | logger.plain("\npython %s () {\n%s}\n", e, envdata.getVar(e, False)) | 653 | logger.plain("\npython %s () {\n%s}\n", e, envdata.getVar(e, False)) |
654 | 654 | ||