summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-10-06 18:54:25 +0000
committerJeremy Katz <katzj@redhat.com>2006-10-06 18:54:25 +0000
commit995b1ec7a916afb325d769563a8492e7189a973f (patch)
treee5bf6cd1ba10ae75ee8a68770e402157f71bcb76 /yuminstall.py
parentfdc68f60c904cbe9dcd98da283e7bb80c6e1b777 (diff)
downloadanaconda-995b1ec7a916afb325d769563a8492e7189a973f.tar.gz
anaconda-995b1ec7a916afb325d769563a8492e7189a973f.tar.xz
anaconda-995b1ec7a916afb325d769563a8492e7189a973f.zip
2006-10-06 Jeremy Katz <katzj@redhat.com>
* yuminstall.py (YumSorter.tsCheck): Fix case where we could spin endlessly in dep checking (#209665)
Diffstat (limited to 'yuminstall.py')
-rw-r--r--yuminstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py
index e60744e7e..2f2aa6756 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -268,7 +268,7 @@ class YumSorter(yum.YumBase):
unresolved = []
for txmbr in tocheck:
- if txmbr.name == "redhat-lsb" and len(tocheck) != 1: # FIXME: this speeds things up a lot
+ if txmbr.name == "redhat-lsb" and len(tocheck) > 2: # FIXME: this speeds things up a lot
unresolved.append(txmbr)
continue
if self.dsCallback: self.dsCallback.pkgAdded()