summaryrefslogtreecommitdiffstats
path: root/language.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-03 07:20:41 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-03 07:20:41 +0000
commitc2880f36f348f1fb73af75565e6ce9d7d30cbc91 (patch)
treed588ef9850cc51fe656c0398edf48155d3931b98 /language.py
parent26998d25e51b4df9a70bf7f7ff36c506336b42bf (diff)
downloadanaconda-c2880f36f348f1fb73af75565e6ce9d7d30cbc91.tar.gz
anaconda-c2880f36f348f1fb73af75565e6ce9d7d30cbc91.tar.xz
anaconda-c2880f36f348f1fb73af75565e6ce9d7d30cbc91.zip
let's go to not setting _install_langs as we've discussed and see if it
gets noticed for beta4. we can always revert back to having it easily enough but I don't think that the disk space usage is a good reason not to since it's virtually impossible to install the languages after the fact and nothing but anaconda ever looks at it anyway (#75184)
Diffstat (limited to 'language.py')
-rw-r--r--language.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/language.py b/language.py
index 3f0b6386d..1a7323b5c 100644
--- a/language.py
+++ b/language.py
@@ -263,7 +263,7 @@ class Language (SimpleConfigFile):
if len(langlist) == len(self.allSupportedLangs):
self.info["SUPPORTED"] = None
self.supported = langlist
- rpm.delMacro ("_install_langs")
+# rpm.delMacro ("_install_langs")
elif langlist:
rpmNickList = []
for name in langlist:
@@ -275,10 +275,10 @@ class Language (SimpleConfigFile):
self.supported = langlist
shortLinguas = string.join (rpmNickList, ':')
- rpm.addMacro("_install_langs", shortLinguas)
+# rpm.addMacro("_install_langs", shortLinguas)
else:
self.info["SUPPORTED"] = None
- rpm.delMacro ("_install_langs")
+# rpm.delMacro ("_install_langs")
self.supported = None
if self.info["SUPPORTED"]: