diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-09-03 07:15:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-09-03 07:15:09 +0000 |
commit | 9cb6e8783c61f9d7008e442b348f5f24b8d6a1cb (patch) | |
tree | fb24baae063f80fc9bf013ffaf389bf1bb199be0 /io/ftwtest-sh | |
parent | f01a6a0879a43135e13dfcc0c5f27a322e1ca5f9 (diff) | |
download | glibc-9cb6e8783c61f9d7008e442b348f5f24b8d6a1cb.zip glibc-9cb6e8783c61f9d7008e442b348f5f24b8d6a1cb.tar.gz glibc-9cb6e8783c61f9d7008e442b348f5f24b8d6a1cb.tar.bz2 |
Update.
1999-08-30 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* io/ftwtest-sh: Set LC_ALL and LANG to fix locale
dependencies in sort.
1999-09-01 H.J. Lu <hjl@gnu.org>
* sysdeps/unix/sysv/linux/alpha/sys/user.h: New file.
* sysdeps/unix/sysv/linux/alpha/sys/procfs.h: Include
<sys/user.h> instead of <asm/user.h>.
Diffstat (limited to 'io/ftwtest-sh')
-rw-r--r-- | io/ftwtest-sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/io/ftwtest-sh b/io/ftwtest-sh index dadbfa0..389c412 100644 --- a/io/ftwtest-sh +++ b/io/ftwtest-sh @@ -16,6 +16,12 @@ if test `id | sed "s/uid=\([0-9]*\).*/\1/"` = 0; then exit 0 fi +# Since we use `sort' we must make sure to use the same locale everywhere. +LC_ALL=C +export LC_ALL +LANG=C +export LANG + # First create our scenario: tmp=`echo ${TMPDIR:-/tmp} | sed 's|\(.\)/*$|\1|'` tmpdir=$tmp/ftwtest.d |