summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-10-02 20:13:26 +0000
committerJeremy Katz <katzj@redhat.com>2006-10-02 20:13:26 +0000
commit6b703ac83c9089b6ef2b1ef7e58b1efc53545fbe (patch)
tree72b1b476a99617a504596bd629b87306bc6752b4
parentc605886cce2f117cd3b74bbd32746737962b06e1 (diff)
downloadanaconda-6b703ac83c9089b6ef2b1ef7e58b1efc53545fbe.tar.gz
anaconda-6b703ac83c9089b6ef2b1ef7e58b1efc53545fbe.tar.xz
anaconda-6b703ac83c9089b6ef2b1ef7e58b1efc53545fbe.zip
2006-10-02 Jeremy Katz <katzj@redhat.com>
* scripts/upd-instroot: Attempt to fix up sr_CS.UTF-8@Latn (#182591)
-rw-r--r--ChangeLog4
-rwxr-xr-xscripts/upd-instroot2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 547269300..64675d5df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-10-02 Jeremy Katz <katzj@redhat.com>
+
+ * scripts/upd-instroot: Attempt to fix up sr_CS.UTF-8@Latn (#182591)
+
2006-10-02 David Cantrell <dcantrell@redhat.com>
* isys/isys.py (inet_doConvertPrefixToNetmask): Removed since it does
diff --git a/scripts/upd-instroot b/scripts/upd-instroot
index 47f59a6a8..16c367abb 100755
--- a/scripts/upd-instroot
+++ b/scripts/upd-instroot
@@ -988,7 +988,7 @@ cat $DESTGR/usr/lib/anaconda/lang-table* | awk '
};
print $2;
}
-' | LC_ALL=C sort -u > $DESTGR/locales
+' | sed -e 's/latn/Latn/g' | LC_ALL=C sort -u > $DESTGR/locales
for p in lib share; do (
cd $DESTGR/usr/$p/locale && {
ls | grep -v locale.alias | LC_ALL=C sort > $DESTGR/locales.list