Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-01-26 01:46:25 +0300
committerMike Frysinger <vapier@gentoo.org>2006-01-26 01:46:25 +0300
commit546a99db1df583828963af726214181172e5d845 (patch)
treee3a36144a9366c02f6dcfdfc564e648f48af2a4e /testsuite
parent84005af7ef890418fa8558824439fa103da63d4e (diff)
use LC_ALL, not LANG, for forcing C
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/ls/ls-l-works2
-rw-r--r--testsuite/ls/ls-s-works2
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/ls/ls-l-works b/testsuite/ls/ls-l-works
index e80f9582e..efc2b196e 100644
--- a/testsuite/ls/ls-l-works
+++ b/testsuite/ls/ls-l-works
@@ -1,4 +1,4 @@
[ -n "$d" ] || d=..
-LANG=C ls -l "$d" > logfile.gnu
+LC_ALL=C ls -l "$d" > logfile.gnu
busybox ls -l "$d" > logfile.bb
diff -w logfile.gnu logfile.bb
diff --git a/testsuite/ls/ls-s-works b/testsuite/ls/ls-s-works
index cdd9878c0..6c8bf3627 100644
--- a/testsuite/ls/ls-s-works
+++ b/testsuite/ls/ls-s-works
@@ -1,4 +1,4 @@
[ -n "$d" ] || d=..
-LANG=C ls -1s "$d" > logfile.gnu
+LC_ALL=C ls -1s "$d" > logfile.gnu
busybox ls -1s "$d" > logfile.bb
cmp logfile.gnu logfile.bb