1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-03 10:44:24 +02:00
Files
coreutils/tests/lang-default
Jim Meyering f604c52243 (LC_COLLATE): Set it to the empty string and
export it.  Otherwise, tests/cp/cp-mv-backup would fail e.g., when
LC_COLLATE was set to en.  Reported by Vin Shelton.
2000-10-29 07:38:13 +00:00

9 lines
242 B
Bash

#!/bin/sh
# Set locale-related environment variables so we get consistent
# message translations, time formats, sort orderings, etc.
LANGUAGE=''; export LANGUAGE
LC_ALL=''; export LC_ALL
LANG=''; export LANG
LC_COLLATE=''; export LC_COLLATE