mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 00:32:14 +02:00
classes/buildhistory: sort FILELIST in package info
The FILELIST order can vary depending on the order the files were written which may change between builds with no ill effect, so sort the list prior to writing it. (From OE-Core rev: 2e9981000a211a89f88d7728393cc231e466581a) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
3cce3196fa
commit
04c290a492
@@ -186,6 +186,7 @@ python buildhistory_emit_pkghistory() {
|
||||
fstat = os.lstat(os.path.join(root, f))
|
||||
pkginfo.size += fstat.st_size
|
||||
filelist.append(os.sep + os.path.join(relpth, f))
|
||||
filelist.sort()
|
||||
pkginfo.filelist = " ".join(filelist)
|
||||
|
||||
write_pkghistory(pkginfo, d)
|
||||
|
||||
Reference in New Issue
Block a user