summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-11 23:05:00 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-11 23:05:00 +0000
commit6844c042c68b368d3ef608f31ebdf3dd8f70b7be (patch)
tree9d08c50fbe2916f8129e815392a5c1f89367fc08 /bin
parent99b38cfc8392dd1bf65418e51a449abe5a85373a (diff)
downloadportage-6844c042c68b368d3ef608f31ebdf3dd8f70b7be.tar.gz
portage-6844c042c68b368d3ef608f31ebdf3dd8f70b7be.tar.bz2
portage-6844c042c68b368d3ef608f31ebdf3dd8f70b7be.zip
Rename the undocumented --conistent option to --complete-graph and add
some docs. (trunk r9846) svn path=/main/branches/2.1.2/; revision=9847
Diffstat (limited to 'bin')
-rwxr-xr-xbin/emerge6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/emerge b/bin/emerge
index cc4b8b27b..8f12145a7 100755
--- a/bin/emerge
+++ b/bin/emerge
@@ -188,7 +188,7 @@ options=[
"--ask", "--alphabetical",
"--buildpkg", "--buildpkgonly",
"--changelog", "--columns",
-"--consistent",
+"--complete-graph",
"--debug", "--deep",
"--digest",
"--emptytree",
@@ -382,7 +382,7 @@ def create_depgraph_params(myopts, myaction):
myparams.discard("recurse")
if "--deep" in myopts:
myparams.add("deep")
- if "--consistent" in myopts:
+ if "--complete-graph" in myopts:
myparams.add("consistent")
return myparams
@@ -2989,7 +2989,7 @@ class depgraph(object):
intially satisfied.
Since this method can consume enough time to disturb users, it is
- currently only enabled by the --consistent option.
+ currently only enabled by the --complete-graph option.
"""
if "consistent" not in self.myparams:
# Skip this to avoid consuming enough time to disturb users.