summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTodd Lyons <tlyons@exim.org>2013-10-03 06:42:26 -0700
committerTodd Lyons <tlyons@exim.org>2013-10-03 06:42:26 -0700
commit592d514d76f49d303321e3069f6a987528d551ea (patch)
treead61b8c1264b9fac931d8141cfe745c3ae60fe4f /src
parentdce7179da790a596fcf724774a751db65f4adcb0 (diff)
Setting LC_ALL with make overrode this sort checkexim-4_82_RC2
Diffstat (limited to 'src')
-rw-r--r--src/scripts/source_checks4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/source_checks b/src/scripts/source_checks
index 79f9c3555..eac4b8d1b 100644
--- a/src/scripts/source_checks
+++ b/src/scripts/source_checks
@@ -10,7 +10,7 @@ do
perl -e '$/= undef; while (<>) { print $1 if /(?<='$table'\[\])\s*=\s*{\n(([^}].*\n)+)/m }' \
| awk '/{ (US)?"/ {print $2}' \
| awk -F\" '{print $2}' \
- | LANG=C sort -c \
+ | LC_ALL=C sort -c \
|| exit 1
done <<-END
readconf.c optionlist_config
@@ -36,7 +36,7 @@ do
< $file \
perl -e '$/= undef; while (<>) { print $1 if /(?<='$table'\[\])\s*=\s*{\s?(([^}]*)+)}/m }' \
| awk -F\" '/"/ {print $2}' \
- | LANG=C sort -c \
+ | LC_ALL=C sort -c \
|| exit 1
done <<-END