File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 55
66set -e
77
8- LANG=C # Ensure stable ordering of `sort` output
9- export LANG
8+ # Ensure stable ordering of `sort` output
9+ LANG=C
10+ LC_ALL=C
11+ export LANG LC_ALL
1012
1113if [ " $1 " = " " -o " $2 " = " " ] ; then
1214 echo " Usage: $0 <dir> <manifest name> [<build type>]" >&2
Original file line number Diff line number Diff line change 44
55set -e
66
7- LANG=C # Ensure stable ordering of `sort` output
8- export LANG
7+ # Ensure stable ordering of `sort` output
8+ LANG=C
9+ LC_ALL=C
10+ export LANG LC_ALL
911
1012if [ " $1 " = " " -o " $2 " = " " ] ; then
1113 echo " Usage: $0 <so_dir> <manifest_dir>" >&2
Original file line number Diff line number Diff line change 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.
3838CURRENT_RELEASE=` grep -E ' m4_define\(pcre2_(major|minor|prerelease)' configure.ac | \
You can’t perform that action at this time.
0 commit comments