aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-05-11 12:00:27 -0700
committerZac Medico <zmedico@gentoo.org>2011-05-11 12:00:27 -0700
commite6cb6af7cf6a443b892f32f1408a98c6bd4d3c10 (patch)
treea3a1651ef9a4ba58e2a8363dc7019ea37fadaf89 /pym/_emerge/help.py
parentdep_check_composite_db: return early from cp_list (diff)
downloadportage-e6cb6af7cf6a443b892f32f1408a98c6bd4d3c10.tar.gz
portage-e6cb6af7cf6a443b892f32f1408a98c6bd4d3c10.tar.bz2
portage-e6cb6af7cf6a443b892f32f1408a98c6bd4d3c10.zip
depgraph: in complete mode respect --with-bdeps
If you want the graph as complete as possible, now you'll have to use --with-bdeps=y together with --complete-graph.
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index de50b7517..9de6aade7 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -383,7 +383,10 @@ def help(myopts, havecolor=1):
" option will significantly increase the time taken for dependency" + \
" calculations. Note that, unlike the --deep option, the" + \
" --complete-graph option does not cause any more packages to" + \
- " be updated than would have otherwise been updated with the option disabled."
+ " be updated than would have otherwise " + \
+ "been updated with the option disabled. " + \
+ "Using --with-bdeps=y together with --complete-graph makes " + \
+ "the graph as complete as possible."
for line in wrap(desc, desc_width):
print(desc_indent + line)
print()