From: Zac Medico Date: Fri, 27 Mar 2009 04:28:33 +0000 (-0000) Subject: Note that --noreplace takes precedence over options such as --newuse. X-Git-Tag: v2.1.6.11~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1e39c137216ea69a758d04bfdd0e3434a603fece;p=portage.git Note that --noreplace takes precedence over options such as --newuse. (trunk r13180) svn path=/main/branches/2.1.6/; revision=13209 --- diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py index 581f58438..200f30708 100644 --- a/pym/_emerge/help.py +++ b/pym/_emerge/help.py @@ -367,6 +367,12 @@ def help(myaction,myopts,havecolor=1): print " ebuilds, or deps you specify on the command-line *will* cause" print " Portage to remerge the package, even if it is already installed." print " Note that Portage won't remerge dependencies by default." + desc = "Also note that this option takes " + \ + "precedence over options such as --newuse, preventing a package " + \ + "from being reinstalled even though the corresponding USE flag settings " + \ + "may have changed." + for line in wrap(desc, desc_width): + print desc_indent + line print print " "+green("--nospinner") print " Disables the spinner regardless of terminal type."