Skip to content

Commit cd85b16

Browse files
authored
Backport of one CI build fix
1 parent 2dce776 commit cd85b16

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

maint/PrepareRelease

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
# Set the LANG to C, because nroff converts ASCII "HYPHEN-MINUS" to Unicode
3434
# "HYPHEN" if the system is using a UTF-8 locale (like "C.UTF-8").
35-
export LANG=C
35+
export LANG=C LC_ALL=C
3636

3737
# Extract the current release version from configure.ac.
3838
CURRENT_RELEASE=`grep -E 'm4_define\(pcre2_(major|minor|prerelease)' configure.ac | \

maint/RunManifestTest

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
# Script to test a directory listing. We use this to verify that the list of
44
# files installed by "make install" or "cmake --install" matches what we expect.
55

6-
LANG=C # Ensure stable ordering of `sort` output
7-
export LANG
6+
# Ensure stable ordering of `sort` output
7+
LANG=C
8+
LC_ALL=C
9+
export LANG LC_ALL
810

911
if [ "$1" = "" -o "$2" = "" ] ; then
1012
echo "Usage: $0 <dir> <manifest name>" >&2

0 commit comments

Comments
 (0)