summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-09-16 15:46:14 -0400
committerBehdad Esfahbod <behdad@behdad.org>2009-09-16 15:50:34 -0400
commitf4336352405ee7c184d45a73cdd6c1a0526843db (patch)
treec7ee81e631ca8ab3495188960667fdf7f988a266 /doc
parent56c9b2de7a2b93b2e0c59cf98326d8c0d4d508ba (diff)
Set LC_ALL=C instead of LANG=C
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/public/check-doc-coverage.sh4
-rwxr-xr-xdoc/public/check-doc-syntax.sh3
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/public/check-doc-coverage.sh b/doc/public/check-doc-coverage.sh
index 2898fc582..1cf051b1f 100755
--- a/doc/public/check-doc-coverage.sh
+++ b/doc/public/check-doc-coverage.sh
@@ -1,6 +1,8 @@
#!/bin/sh
-LANG=C
+LC_ALL=C
+export LC_ALL
+
if test -z "$DOC_MODULE"; then
# extract from Makefile
eval `grep '^DOC_MODULE' Makefile | sed 's/ //g'`
diff --git a/doc/public/check-doc-syntax.sh b/doc/public/check-doc-syntax.sh
index c446d26bf..129065d2a 100755
--- a/doc/public/check-doc-syntax.sh
+++ b/doc/public/check-doc-syntax.sh
@@ -1,6 +1,7 @@
#!/bin/sh
-LANG=C
+LC_ALL=C
+export LC_ALL
test -z "$srcdir" && srcdir=.
test -z "$top_srcdir" && top_srcdir=$srcdir/../..