aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2011-09-21 14:23:44 +0200
committerZac Medico <zmedico@gentoo.org>2011-09-21 07:00:35 -0700
commit5f3826d1b1a82f4e0b2c2ffdb663e8b785d7e7fa (patch)
treeef3c292ecaefb2e9a0405c240137da35552481af /pym/_emerge/help.py
parentReject inconsistent backtrack parameters (diff)
downloadportage-5f3826d1b1a82f4e0b2c2ffdb663e8b785d7e7fa.tar.gz
portage-5f3826d1b1a82f4e0b2c2ffdb663e8b785d7e7fa.tar.bz2
portage-5f3826d1b1a82f4e0b2c2ffdb663e8b785d7e7fa.zip
autounmask: Always use unresticted atoms for license and USE changes
See bug 379333.
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index e6828c0f4..7e73ec067 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -325,9 +325,10 @@ def help(myopts, havecolor=1):
print()
print(" " + green("--autounmask-unrestricted-atoms") + " [ %s | %s ]" % \
(turquoise("y"), turquoise("n")))
- desc = "If --autounmask is enabled, changes using the '=' operator " + \
- "will be written. With this option, '>=' operators will be used " + \
- "whenever possible."
+ desc = "If --autounmask is enabled, keyword and mask changes" + \
+ "using the '=' operator will be written. With this option, " + \
+ "'>=' operators will be used whenever possible. USE and " + \
+ "license changes always use the latter behvior."
for line in wrap(desc, desc_width):
print(desc_indent + line)
print()