summaryrefslogtreecommitdiff
path: root/tools/yelp-build.in
diff options
context:
space:
mode:
authorShaun McCance <shaunm@gnome.org>2014-02-02 14:23:12 -0500
committerShaun McCance <shaunm@gnome.org>2014-02-02 14:23:12 -0500
commit6a26ba9b486a0dfb86afdcb6e8a450ee8dc3dd06 (patch)
tree3432f3ef650835e5b70c189454d90815780ac14f /tools/yelp-build.in
parentddee793ab2f2ff7366ef2bdde79ebb44e2395b55 (diff)
downloadyelp-tools-6a26ba9b486a0dfb86afdcb6e8a450ee8dc3dd06.tar.gz
Set LC_ALL instead of LANG for awk, #709354
Diffstat (limited to 'tools/yelp-build.in')
-rwxr-xr-xtools/yelp-build.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/yelp-build.in b/tools/yelp-build.in
index b76349c..50f28f5 100755
--- a/tools/yelp-build.in
+++ b/tools/yelp-build.in
@@ -36,7 +36,7 @@ mkdir_p () {
}
urlencode () {
- LANG=C awk '
+ LC_ALL=C awk '
BEGIN {
for (i = 1; i <= 255; i++) chars[sprintf("%c", i)] = i;
}
@@ -54,7 +54,7 @@ BEGIN {
}
urldecode () {
- LANG=C awk '
+ LC_ALL=C awk '
BEGIN {
for(i = 0; i < 10; i++) hex[i] = i;
hex["A"] = hex["a"] = 10;