summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-03-02 20:13:34 +0000
committerZac Medico <zmedico@gentoo.org>2010-03-02 20:13:34 +0000
commit529bdecc0e461a89b5885c2382af707ba3fbeabf (patch)
tree3b7cbb3d74731974a446162b222d4a27a982c44a /pym/_emerge/help.py
parent91ce21d28a2a84c825bc3094f3b9179b51923631 (diff)
downloadportage-529bdecc0e461a89b5885c2382af707ba3fbeabf.tar.gz
portage-529bdecc0e461a89b5885c2382af707ba3fbeabf.tar.bz2
portage-529bdecc0e461a89b5885c2382af707ba3fbeabf.zip
Bug #304793 - Update --newuse docs to indicate that this option also implies
--selective. (trunk r15346) svn path=/main/branches/2.1.7/; revision=15573
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index 5daf71a99..d61f090be 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -439,8 +439,11 @@ def help(myopts, havecolor=1):
print(desc_indent + line)
print()
print(" "+green("--newuse")+" ("+green("-N")+" short option)")
- print(" Tells emerge to include installed packages where USE flags have ")
- print(" changed since installation.")
+ desc = "Tells emerge to include installed packages where USE " + \
+ "flags have changed since compilation. This option " + \
+ "also implies the --selective option."
+ for line in wrap(desc, desc_width):
+ print(desc_indent + line)
print()
print(" "+green("--noconfmem"))
print(" Portage keeps track of files that have been placed into")