mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 00:49:33 +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:]
|
conf_list[i] = conf_list[i][1:]
|
||||||
|
|
||||||
os.chdir(cwd)
|
os.chdir(cwd)
|
||||||
return conf_list
|
return sorted(conf_list)
|
||||||
|
|
||||||
def legitimize_package_name(s):
|
def legitimize_package_name(s):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user