summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/emerge12
1 files changed, 0 insertions, 12 deletions
diff --git a/bin/emerge b/bin/emerge
index c75e3ef54..c38e4d3c1 100755
--- a/bin/emerge
+++ b/bin/emerge
@@ -1156,13 +1156,10 @@ class depgraph:
"--getbinpkgonly" in self.myopts)
del trees
- self.missingbins=[]
self.digraph=portage.digraph()
# Tracks simple parent/child relationships (PDEPEND relationships are
# not reversed).
self._parent_child_digraph = digraph()
- self.orderedkeys=[]
- self.outdatedpackages=[]
# contains all sets added to the graph
self._sets = {}
# contains atoms given as arguments
@@ -5814,15 +5811,6 @@ def action_build(settings, trees, mtimedb,
if "--quiet" not in myopts and "--nodeps" not in myopts:
print "\b\b... done!"
- if ("--usepkgonly" in myopts) and mydepgraph.missingbins:
- sys.stderr.write(red("The following binaries are not available for merging...\n"))
-
- if mydepgraph.missingbins:
- for x in mydepgraph.missingbins:
- sys.stderr.write(" "+str(x)+"\n")
- sys.stderr.write("\nThese are required by '--usepkgonly' -- Terminating.\n\n")
- return 1
-
if "--pretend" not in myopts and \
("--ask" in myopts or "--tree" in myopts or \
"--verbose" in myopts) and \