mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
package.bbclass: Sort shlib2 output for hash equivalency
The output was unsorted, so different versions of python, different input ordering could have have changed the files, and thus changed the hashes making the system think the output was different, even when unmodified. (From OE-Core rev: 07d15b83a998d6a80eba2cf8649486bfe302f94d) Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 23cc846c92219c5cbe3fc6a0024579195d3cbd78) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
966323d80e
commit
e0b6c93875
@@ -1842,7 +1842,7 @@ python package_do_shlibs() {
|
||||
shlibs_file = os.path.join(shlibswork_dir, pkg + ".list")
|
||||
if len(sonames):
|
||||
with open(shlibs_file, 'w') as fd:
|
||||
for s in sonames:
|
||||
for s in sorted(sonames):
|
||||
if s[0] in shlib_provider and s[1] in shlib_provider[s[0]]:
|
||||
(old_pkg, old_pkgver) = shlib_provider[s[0]][s[1]]
|
||||
if old_pkg != pkg:
|
||||
|
||||
Reference in New Issue
Block a user