summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2004-10-11 19:40:50 +0000
committerBill Nottingham <notting@redhat.com>2004-10-11 19:40:50 +0000
commit8237b2037c826fc7097055cf1a00a10a99db8bcf (patch)
tree1c900de2a9034e887d5ef6620f8b108d9790db23
parent4d9e1df2d58aa5b6a1a17802c9162ecdf965c6b6 (diff)
reverse norwegian blacklisting (#129453)
-rw-r--r--ChangeLog2
-rwxr-xr-xscripts/genlocalelist.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e068f19aa..4369147b3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2004-10-11 Bill Nottingham <notting@redhat.com>
+ * scripts/genlocalelist.py: reverse norwegian blacklisting (#129453)
+
* loader2/module-info: add sata_nv, sata_sx4, ixgb; sort sata list
2004-10-07 Jeremy Katz <katzj@redhat.com>
diff --git a/scripts/genlocalelist.py b/scripts/genlocalelist.py
index b8a1c72e8..fc56e8b51 100755
--- a/scripts/genlocalelist.py
+++ b/scripts/genlocalelist.py
@@ -119,9 +119,9 @@ for line in lines:
# we don't want @euro locales for utf8
lang = lang.replace("UTF-8@euro", "UTF-8")
- # someone put nb_NO in locale.alias. yuck. We don't want
+ # someone put no_NO in locale.alias. yuck. We don't want
# to offer that
- if lang.startswith("nb_") or lang.startswith("iw_"):
+ if lang.startswith("no_") or lang.startswith("iw_"):
continue
f = os.popen("LANG=%s locale language territory charmap" %(lang,), "r")