summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-02-18 21:50:53 +0000
committerZac Medico <zmedico@gentoo.org>2010-02-18 21:50:53 +0000
commit1366d50fd4a6f70f60b156fbd39751ae1d3aab21 (patch)
treecd2f35bc5993ae1e90a8b9e85e81171ea1aea4a7 /pym/_emerge/help.py
parent291e2f89392abfc6d7f00432b47c318401cdf55f (diff)
downloadportage-1366d50fd4a6f70f60b156fbd39751ae1d3aab21.tar.gz
portage-1366d50fd4a6f70f60b156fbd39751ae1d3aab21.tar.bz2
portage-1366d50fd4a6f70f60b156fbd39751ae1d3aab21.zip
Only enable --rebuilt-binaries automatically if --update and --deep are also
enabled. svn path=/main/trunk/; revision=15372
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index afdaa1cab..7c6b334fc 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -510,8 +510,9 @@ def help(myopts, havecolor=1):
desc = "Replace installed packages with binary packages that have " + \
"been rebuilt. Rebuilds are detected by comparison of " + \
"BUILD_TIME package metadata. This option is enabled " + \
- "automatically when using binary packages (see " + \
- "--usepkg and --getbinpkg)."
+ "automatically when using binary packages " + \
+ "(--usepkg or --getbinpkg) together with " + \
+ "--update and --deep."
for line in wrap(desc, desc_width):
print(desc_indent + line)
print()