aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2019-09-12 12:36:27 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-16 23:02:23 +0100
commit2dc862237dba82da37c8ac9289e0a21409b1305c (patch)
treec7ccc54f052d972527a7389d8ecfe80ae8bea860
parent218431b0f7c97764cb2c0b79a3aadfe2007f490b (diff)
downloadbitbake-2dc862237dba82da37c8ac9289e0a21409b1305c.tar.gz
Revert "bitbake: cooker: Ensure bbappends are found in stable order"
This reverts commit 94c0c7f15c7a6244a8576ed948ffc21afb96ba82. This ignores the layer priority, making the issue much worse. E.g. I'm seeing a lot of failures caused by missing users, because base-passwd bbappends applied in unexpected order caused different passwd.master to be found in re-ordered FILESPATH. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/cooker.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 5840aa75e..e46868ddd 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -1852,7 +1852,6 @@ class CookerCollectFiles(object):
(bbappend, filename) = b
if (bbappend == f) or ('%' in bbappend and bbappend.startswith(f[:bbappend.index('%')])):
filelist.append(filename)
- filelist.sort()
return filelist
def collection_priorities(self, pkgfns, d):