Skip to content

Commit

Permalink
Revert "cml1.bbclass: Return sorted list of cfg files"
Browse files Browse the repository at this point in the history
This reverts commit dee41e9.

This patch breaks cases where some config files make changes to earlier ones,
ordering is important. The reproducibility issue in busybox was elsewhere.

Signed-off-by: Richard Purdie <[email protected]>
  • Loading branch information
rpurdie committed May 18, 2021
1 parent 319fb2d commit ab0a296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meta/classes/cml1.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def find_cfgs(d):
if s.endswith('.cfg'):
sources_list.append(s)

return sorted(sources_list)
return sources_list

cml1_do_configure() {
set -e
Expand Down

0 comments on commit ab0a296

Please sign in to comment.