summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-05-16 21:30:08 -0700
committerZac Medico <zmedico@gentoo.org>2011-05-16 21:30:08 -0700
commit5e225f13ad40759698469c7bfe63579e86ea2567 (patch)
tree2d9464f99d2b6d42ae27b3a8e78fdf0cb18d6edf /pym/_emerge/help.py
parentbd486e676cf4fb1893f8d06220c1f60ed04760f2 (diff)
downloadportage-5e225f13ad40759698469c7bfe63579e86ea2567.tar.gz
portage-5e225f13ad40759698469c7bfe63579e86ea2567.tar.bz2
portage-5e225f13ad40759698469c7bfe63579e86ea2567.zip
Document that --autounmask is enabled by default.
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index ddaa62602..9dc38b764 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -309,14 +309,15 @@ def help(myopts, havecolor=1):
print()
print(" " + green("--autounmask") + " [ %s | %s ]" % \
(turquoise("y"), turquoise("n")))
- desc = "Automatically unmask packages. If any configuration " + \
+ desc = "Automatically unmask packages and generate package.use " + \
+ "settings as necessary to satisfy dependencies. This " + \
+ "option is enabled by default. If any configuration " + \
"changes are required, then they will be displayed " + \
"after the merge list and emerge will immediately " + \
"abort. If the displayed configuration changes are " + \
"satisfactory, you should copy and paste them into " + \
- "the specified configuration file(s). Currently, " + \
- "this only works for unstable KEYWORDS masks, " + \
- "LICENSE masks, and package.use settings."
+ "the specified configuration file(s), or enable the " + \
+ "--autounmask-write option."
for line in wrap(desc, desc_width):
print(desc_indent + line)
print()