summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-06-02 22:40:39 -0700
committerZac Medico <zmedico@gentoo.org>2011-06-02 22:40:39 -0700
commit7e4de7782079b4030e8f19582204f500bf9c4902 (patch)
tree28307b7884690ab7619c91259089faa3247cc802
parent8f677b5e1d7c8e41c4b677b4cf802b1e8ab21a69 (diff)
downloadportage-7e4de7782079b4030e8f19582204f500bf9c4902.tar.gz
portage-7e4de7782079b4030e8f19582204f500bf9c4902.tar.bz2
portage-7e4de7782079b4030e8f19582204f500bf9c4902.zip
autounmask-write: mention --ask in docs
-rw-r--r--man/emerge.12
-rw-r--r--pym/_emerge/help.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/man/emerge.1 b/man/emerge.1
index 012934747..1ab8e4b12 100644
--- a/man/emerge.1
+++ b/man/emerge.1
@@ -304,7 +304,7 @@ the specified configuration file(s), or enable the
.TP
.BR "\-\-autounmask\-write [ y | n ]"
If \-\-autounmask is enabled, changes are written
-to config files, respecting \fBCONFIG_PROTECT\fR.
+to config files, respecting \fBCONFIG_PROTECT\fR and \fB\-\-ask\fR.
.TP
.BR \-\-backtrack=COUNT
Specifies an integer number of times to backtrack if
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index 9dc38b764..9d60f3a70 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -324,7 +324,7 @@ def help(myopts, havecolor=1):
print(" " + green("--autounmask-write") + " [ %s | %s ]" % \
(turquoise("y"), turquoise("n")))
desc = "If --autounmask is enabled, changes are written " + \
- "to config files, respecting CONFIG_PROTECT."
+ "to config files, respecting CONFIG_PROTECT and --ask."
for line in wrap(desc, desc_width):
print(desc_indent + line)
print()