From: Zac Medico Date: Sun, 13 Feb 2011 00:22:49 +0000 (-0800) Subject: emerge.1: cross-ref --newuse and --changed-use X-Git-Tag: v2.1.9.40~29 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1de9fc1a63e57bf77a029863004aaffbb17c7410;p=portage.git emerge.1: cross-ref --newuse and --changed-use This will fix bug #354437. --- diff --git a/man/emerge.1 b/man/emerge.1 index 8ed874818..63e68256b 100644 --- a/man/emerge.1 +++ b/man/emerge.1 @@ -439,7 +439,9 @@ A USE flag was turned on for a package. A USE flag was turned off for a package. USE flags may be toggled by your profile as well as your USE and package.use -settings. +settings. If you would like to skip rebuilds for which disabled flags have +been added to or removed from IUSE, see the related +\-\-reinstall=changed\-use option. .TP .BR "\-\-noconfmem" Causes portage to disregard merge records indicating that a config file diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py index ab8985d45..6a1bae439 100644 --- a/pym/_emerge/help.py +++ b/pym/_emerge/help.py @@ -508,7 +508,10 @@ def help(myopts, havecolor=1): print(" "+green("--newuse")+" ("+green("-N")+" short option)") desc = "Tells emerge to include installed packages where USE " + \ "flags have changed since compilation. This option " + \ - "also implies the --selective option." + "also implies the --selective option. If you would " + \ + "like to skip rebuilds for which disabled flags have " + \ + "been added to or removed from IUSE, see the related " + \ + "--reinstall=changed-use option." for line in wrap(desc, desc_width): print(desc_indent + line) print()