From: Jim Meyering Date: Tue, 31 Oct 2000 19:33:30 +0000 (+0000) Subject: Add all the internationalization-related X-Git-Tag: FILEUTILS-4_0_30~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=933e0997e233d6da6bf0985bd62a156c3de40442;p=thirdparty%2Fcoreutils.git Add all the internationalization-related variable names autoconf uses. Set and export them in a loop. --- diff --git a/tests/lang-default b/tests/lang-default index 2592a2bec7..a6a9cdccd2 100644 --- a/tests/lang-default +++ b/tests/lang-default @@ -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