summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-03-02 20:31:29 +0000
committerZac Medico <zmedico@gentoo.org>2010-03-02 20:31:29 +0000
commit7840f733b2006474cafa3b92681e25350a3b9a61 (patch)
tree7d009f681b239072a3849a07018a858594530965 /pym/_emerge/help.py
parentdf085424c9885bce596c587ddd38bc419cc8ae0e (diff)
downloadportage-7840f733b2006474cafa3b92681e25350a3b9a61.tar.gz
portage-7840f733b2006474cafa3b92681e25350a3b9a61.tar.bz2
portage-7840f733b2006474cafa3b92681e25350a3b9a61.zip
Only enable --rebuilt-binaries automatically if --update and --deep are also
enabled. (trunk r15372) svn path=/main/branches/2.1.7/; revision=15599
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 c277599ca..57494be39 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -507,8 +507,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()