From dfc5423cad2fc2646d64d69f99a06fc2fd7723c7 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Wed, 1 Nov 2023 07:40:13 +0000 Subject: export LC_COLLATE=C and LC_ALL=C this is to ensure alphanumeric sorting, with capital letters first; and numbers before letters. we always relied on this, but until now lbmk would just assume the host is configured this way. this fixes a longstanding design flaw in lbmk. Signed-off-by: Leah Rowe --- build | 3 +++ 1 file changed, 3 insertions(+) (limited to 'build') diff --git a/build b/build index 9ca9de63..8c9f8f9c 100755 --- a/build +++ b/build @@ -8,6 +8,9 @@ [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e +export LC_COLLATE=C +export LC_ALL=C + . "include/err.sh" . "include/option.sh" -- cgit v1.2.1