mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-03 10:44:24 +02:00
export it. Otherwise, tests/cp/cp-mv-backup would fail e.g., when LC_COLLATE was set to en. Reported by Vin Shelton.
9 lines
242 B
Bash
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
|