File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 32
32
33
33
# Set the LANG to C, because nroff converts ASCII "HYPHEN-MINUS" to Unicode
34
34
# "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
36
36
37
37
# Extract the current release version from configure.ac.
38
38
CURRENT_RELEASE=` grep -E ' m4_define\(pcre2_(major|minor|prerelease)' configure.ac | \
Original file line number Diff line number Diff line change 3
3
# Script to test a directory listing. We use this to verify that the list of
4
4
# files installed by "make install" or "cmake --install" matches what we expect.
5
5
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
8
10
9
11
if [ " $1 " = " " -o " $2 " = " " ] ; then
10
12
echo " Usage: $0 <dir> <manifest name>" >&2
You can’t perform that action at this time.
0 commit comments