mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-13 03:44:26 +08:00
933e0997e2
variable names autoconf uses. Set and export them in a loop.
9 lines
254 B
Bash
9 lines
254 B
Bash
#!/bin/sh
|
|
# Set locale-related environment variables so we get consistent
|
|
# message translations, time formats, sort orderings, etc.
|
|
|
|
for i in \
|
|
LANG LANGUAGE LC_ALL LC_COLLATE LC_CTYPE LC_MESSAGES LC_NUMERIC LC_TIME; do
|
|
eval "$i=; export $i"
|
|
done
|