blob: d01624a026e754a4da5902dd57a71fbc4a902abf (
plain)
1
2
3
4
5
6
7
|
#!/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
|