mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
package: always sort the conffiles
To improve package reproducibility, the conffiles order should not be directly linked to the file system. Sorting the conffiles solves this issue. (From OE-Core rev: c7800fa825fa610327e3d2ee8c5707973b726a83) Signed-off-by: Jean-Marie Lemetayer <j.lemetayer@kerlink.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
150feb7a64
commit
fbcce87a3a
@@ -613,7 +613,7 @@ def get_conffiles(pkg, d):
|
||||
conf_list[i] = conf_list[i][1:]
|
||||
|
||||
os.chdir(cwd)
|
||||
return conf_list
|
||||
return sorted(conf_list)
|
||||
|
||||
def legitimize_package_name(s):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user