Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 375331 | Differences between
and this patch

Collapse All | Expand All

(-)a/pym/_emerge/Scheduler.py (-5 / +1 lines)
Lines 745-754 class Scheduler(PollScheduler): Link Here
745
			prefetchers = self._prefetchers
745
			prefetchers = self._prefetchers
746
			getbinpkg = "--getbinpkg" in self.myopts
746
			getbinpkg = "--getbinpkg" in self.myopts
747
747
748
			# In order to avoid "waiting for lock" messages
748
			for pkg in self._mergelist:
749
			# at the beginning, which annoy users, never
750
			# spawn a prefetcher for the first package.
751
			for pkg in self._mergelist[1:]:
752
				# mergelist can contain solved Blocker instances
749
				# mergelist can contain solved Blocker instances
753
				if not isinstance(pkg, Package) or pkg.operation == "uninstall":
750
				if not isinstance(pkg, Package) or pkg.operation == "uninstall":
754
					continue
751
					continue
755
- 

Return to bug 375331