From d679f86a8f78e8b8c172bdd8d050f0bb72f69864 Mon Sep 17 00:00:00 2001 From: ruki Date: Sat, 10 May 2025 21:24:38 +0800 Subject: update xmake.sh --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 11193d75c..f15d99164 100755 --- a/configure +++ b/configure @@ -243,9 +243,9 @@ _os_find() { local name="${2}" local depth="${3}" if test_nz "${depth}"; then - _ret=$(find "${dir}" -maxdepth "${depth}" -mindepth "${depth}" -type f -name "${name}") + _ret=$(find "${dir}" -maxdepth "${depth}" -mindepth "${depth}" -type f -name "${name}" | LC_ALL=C sort) else - _ret=$(find "${dir}" -type f -name "${name}") + _ret=$(find "${dir}" -type f -name "${name}" | LC_ALL=C sort) fi } -- cgit v1.3.1