diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-01-29 00:18:15 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-01-29 00:18:15 +0000 |
commit | c55dc6df6aa2405c21ef78e875706f11e72bf28b (patch) | |
tree | aaf83bf3fa31451b1f6c3b6cffcbb5e1c5639e93 /comps.py | |
parent | 885d158abe7475ca8e0a5344c4a56562121b2db4 (diff) | |
download | anaconda-c55dc6df6aa2405c21ef78e875706f11e72bf28b.tar.gz anaconda-c55dc6df6aa2405c21ef78e875706f11e72bf28b.tar.xz anaconda-c55dc6df6aa2405c21ef78e875706f11e72bf28b.zip |
hack on pkgorder a bit to get "better" ordering. not at all ideal since
it's basically me braindumping component names in an order that makes
some sense to me -- we should instead be getting this information from
install classes probably
add language tag to the Component object so I can get to it from pkgorder
Diffstat (limited to 'comps.py')
-rw-r--r-- | comps.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -549,6 +549,9 @@ class Component: self.selectionCount = 0 self.depsDict = {} + # this is used for the language support groups hack + self.lang = compgroup.langonly + for pkg in compgroup.packages.keys(): if not packages.has_key(pkg): log("%s references package %s which doesn't exist" |