summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-10-08 00:06:10 +0000
committerZac Medico <zmedico@gentoo.org>2009-10-08 00:06:10 +0000
commit5caad3ae98a8e1c664ea2a55391f1f0b27d1bd57 (patch)
tree6d877d3d88653721d516f0da16dddcc54a6cb776 /pym/_emerge/help.py
parentd557bea6d2c3bc311d03f5a4887092957586a16d (diff)
downloadportage-5caad3ae98a8e1c664ea2a55391f1f0b27d1bd57.tar.gz
portage-5caad3ae98a8e1c664ea2a55391f1f0b27d1bd57.tar.bz2
portage-5caad3ae98a8e1c664ea2a55391f1f0b27d1bd57.zip
Bug #287950 - Add a --fail-clean[=n] option, for enabling or disabling
FEATURES=fail-clean from the command line. svn path=/main/trunk/; revision=14518
Diffstat (limited to 'pym/_emerge/help.py')
-rw-r--r--pym/_emerge/help.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py
index c0a6d01d5..312952295 100644
--- a/pym/_emerge/help.py
+++ b/pym/_emerge/help.py
@@ -346,6 +346,15 @@ def help(myopts, havecolor=1):
print(" it possible for developers to get a complete overview of the")
print(" complete dependency tree of a certain package.")
print()
+ print(" "+green("--fail-clean[=n]"))
+ desc = "Clean up temporary files after a build failure. This is " + \
+ "particularly useful if you have PORTAGE_TMPDIR on " + \
+ "tmpfs. If this option is enabled, you probably also want " + \
+ "to enable PORT_LOGDIR (see make.conf(5)) in " + \
+ "order to save the build log."
+ for line in wrap(desc, desc_width):
+ print(desc_indent + line)
+ print()
print(" "+green("--fetchonly")+" ("+green("-f")+" short option)")
print(" Instead of doing any package building, just perform fetches for")
print(" all packages (main package as well as all dependencies.) When")