From: Sebastian Luther Date: Sat, 1 May 2010 19:03:33 +0000 (+0200) Subject: emerge --help: Add --ignore-default-opts (closes bug 246491) X-Git-Tag: v2.2_rc68~571 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4a2bcdc20f7559748b168238faeb63cd801cb417;p=portage.git emerge --help: Add --ignore-default-opts (closes bug 246491) --- diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py index e803bd899..d9994d276 100644 --- a/pym/_emerge/help.py +++ b/pym/_emerge/help.py @@ -114,6 +114,14 @@ def help(myopts, havecolor=1): "in order to prevent uninstall actions from removing " + \ "atoms from the world file." + for line in wrap(paragraph, desc_width): + print(desc_indent + line) + print() + print(" " + green("--ignore-default-opts")) + + paragraph = \ + "Causes EMERGE_DEFAULT_OPTS (see make.conf(5)) to be ignored." + for line in wrap(paragraph, desc_width): print(desc_indent + line) print()