]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Add all the internationalization-related
authorJim Meyering <jim@meyering.net>
Tue, 31 Oct 2000 19:33:30 +0000 (19:33 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 31 Oct 2000 19:33:30 +0000 (19:33 +0000)
variable names autoconf uses.  Set and export them in a loop.

tests/lang-default

index 2592a2bec7111d3fdd277b36adf2838ced7bff7f..a6a9cdccd2356db9a901b0cf02759854d662284b 100644 (file)
@@ -2,7 +2,7 @@
 # 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
+for i in \
+    LANG LANGUAGE LC_ALL LC_COLLATE LC_CTYPE LC_MESSAGES LC_NUMERIC LC_TIME; do
+  eval "$i=; export $i"
+done