diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-01-03 07:20:41 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-01-03 07:20:41 +0000 |
commit | c2880f36f348f1fb73af75565e6ce9d7d30cbc91 (patch) | |
tree | d588ef9850cc51fe656c0398edf48155d3931b98 /language.py | |
parent | 26998d25e51b4df9a70bf7f7ff36c506336b42bf (diff) | |
download | anaconda-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.py | 6 |
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"]: |