summaryrefslogtreecommitdiffstats
path: root/meta/classes-global
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2023-11-13 08:08:43 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-20 15:30:52 +0000
commitfc5cb5ce35105abe6a9a19c984bf515d58b0845c (patch)
tree14c256ac7a24ec7dfe278cc4f30e68074ed7f743 /meta/classes-global
parent2f23231eb151ddaf43b2e41ee03fc95bc2e0349e (diff)
downloadpoky-fc5cb5ce35105abe6a9a19c984bf515d58b0845c.tar.gz
staging.bbclass: process installed dependencies in deterministic order as well
* similarly as direct dependencies before * this doesn't fix any issue (at least AFAIK), just keeps the log files more deterministic to avoid unnecessary churn like in: perl-native.log.do_configure: -NOTE: Installed into sysroot: ['zlib-native', 'make-native', 'perlcross-native', 'gdbm-native', 'xz-native', 'gettext-minimal-native', 'texinfo-dummy-native', 'libtool-native'] +NOTE: Installed into sysroot: ['zlib-native', 'make-native', 'perlcross-native', 'gdbm-native', 'libtool-native', 'gettext-minimal-native', 'texinfo-dummy-native', 'xz-native'] and similarly in "Note: Skipping as already exists in sysroot: (From OE-Core rev: cedee02e1acaffd8932809ceb5b6f9bd4f861283) Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-global')
-rw-r--r--meta/classes-global/staging.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-global/staging.bbclass b/meta/classes-global/staging.bbclass
index d229f40107..cf1e4600fd 100644
--- a/meta/classes-global/staging.bbclass
+++ b/meta/classes-global/staging.bbclass
@@ -521,7 +521,7 @@ python extend_recipe_sysroot() {
521 521
522 binfiles = {} 522 binfiles = {}
523 # Now handle installs 523 # Now handle installs
524 for dep in configuredeps: 524 for dep in sorted(configuredeps):
525 c = setscenedeps[dep][0] 525 c = setscenedeps[dep][0]
526 if c not in installed: 526 if c not in installed:
527 continue 527 continue