From 732ebcf96482eb32cee2d7378c8d3efeb0b96bca Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Mon, 13 Jan 2003 21:10:20 +0000 Subject: include runtime locale support also (so we get utf8 locale support for cjk) --- scripts/upd-instroot | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'scripts/upd-instroot') diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 7458d0505..58e386a80 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -756,6 +756,13 @@ cat $DESTGR/usr/lib/anaconda/lang-table* | awk ' if (split ($5, a, "\.") > 1) { print gensub(/\..*$/,tolower("." a[2]),"",$5); }; + gsub("-", "", $8); + print $8; + print gensub(/\..*$/,"","",$8); + print gensub(/_.*$/,"","",$8); + if (split ($8, a, "\.") > 1) { + print gensub(/\..*$/,tolower("." a[2]),"",$8); + }; } ' | LC_ALL=C sort -u > $DESTGR/locales for p in lib share; do ( -- cgit