From 484e2db8c1b1f425f7d433aad541c42243baf389 Mon Sep 17 00:00:00 2001 From: Michael Bestas Date: Mon, 15 Nov 2021 19:28:56 +0200 Subject: [PATCH] Use LC_ALL=C sorting in generate_prop_list_from_image() * Generate consistent output Change-Id: Ibab238d15a64fbad83fcfad19cb7c6f266d6ecb1 --- extract_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extract_utils.sh b/extract_utils.sh index a750f2c..b0dc70e 100644 --- a/extract_utils.sh +++ b/extract_utils.sh @@ -1794,7 +1794,7 @@ function generate_prop_list_from_image() { done # Sort merged file with all lists - sort -u "$output_list_tmp" > "$output_list" + LC_ALL=C sort -u "$output_list_tmp" > "$output_list" # Clean-up rm -f "$output_list_tmp"