diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-02-06 04:00:35 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-02-06 04:00:35 +0000 |
commit | 3c3e7a9e3e669c81d4b45e75fa147abd34a9358f (patch) | |
tree | fb172bb5acab2b1374639a0ea48199dbcd3f71be | |
parent | ed060b8e1868555701e6c648ea0ef99ea39f4de1 (diff) | |
download | anaconda-3c3e7a9e3e669c81d4b45e75fa147abd34a9358f.tar.gz anaconda-3c3e7a9e3e669c81d4b45e75fa147abd34a9358f.tar.xz anaconda-3c3e7a9e3e669c81d4b45e75fa147abd34a9358f.zip |
more fun with the expanded use of requires= in the comps file...
this handles pulling in deps of things we install (such as, say, skkinput)
so that they all get selected properly. (#83519)
-rw-r--r-- | packages.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages.py b/packages.py index b412a4ba9..4068032ec 100644 --- a/packages.py +++ b/packages.py @@ -1294,8 +1294,10 @@ def selectLanguageSupportGroups(comps, langSupport): if comp.newpkgDict.has_key(reqp): if comp.newpkgDict[reqp][0] == PKGTYPE_MANDATORY: comp.addDependencyPackage(pkg) + comp.updateDependencyCountForAddition(pkg) else: comp.addPackage(pkg, PKGTYPE_DEFAULT) elif comp.depsDict.has_key(req): comp.addDependencyPackage(pkg) + comp.updateDependencyCountForAddition(pkg) comps.updateSelections() |