Skip to content

Commit d679f86

Browse files
committed
update xmake.sh
1 parent 5e8108b commit d679f86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,9 @@ _os_find() {
243243
local name="${2}"
244244
local depth="${3}"
245245
if test_nz "${depth}"; then
246-
_ret=$(find "${dir}" -maxdepth "${depth}" -mindepth "${depth}" -type f -name "${name}")
246+
_ret=$(find "${dir}" -maxdepth "${depth}" -mindepth "${depth}" -type f -name "${name}" | LC_ALL=C sort)
247247
else
248-
_ret=$(find "${dir}" -type f -name "${name}")
248+
_ret=$(find "${dir}" -type f -name "${name}" | LC_ALL=C sort)
249249
fi
250250
}
251251

0 commit comments

Comments
 (0)