diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-09-16 15:46:14 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-09-16 15:50:34 -0400 |
commit | f4336352405ee7c184d45a73cdd6c1a0526843db (patch) | |
tree | c7ee81e631ca8ab3495188960667fdf7f988a266 /doc/public | |
parent | 56c9b2de7a2b93b2e0c59cf98326d8c0d4d508ba (diff) |
Set LC_ALL=C instead of LANG=C
Diffstat (limited to 'doc/public')
-rwxr-xr-x | doc/public/check-doc-coverage.sh | 4 | ||||
-rwxr-xr-x | doc/public/check-doc-syntax.sh | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/public/check-doc-coverage.sh b/doc/public/check-doc-coverage.sh index 2898fc58..1cf051b1 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 c446d26b..129065d2 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/../.. |