diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-02-13 06:00:54 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-02-13 06:00:54 +0000 |
commit | e0da735cca74d09de02387f43d5cdee4a7e8381f (patch) | |
tree | 6c901743f9614f76a274eeced00b38a6f02ac910 | |
parent | When creating a config instance for ROOT=/ with a clean env, copy PATH and (diff) | |
download | portage-multirepo-e0da735cca74d09de02387f43d5cdee4a7e8381f.tar.gz portage-multirepo-e0da735cca74d09de02387f43d5cdee4a7e8381f.tar.bz2 portage-multirepo-e0da735cca74d09de02387f43d5cdee4a7e8381f.zip |
Bug #304793 - Update --newuse docs to indicate that this option also implies
--selective.
svn path=/main/trunk/; revision=15346
-rw-r--r-- | man/emerge.1 | 6 | ||||
-rw-r--r-- | pym/_emerge/help.py | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/man/emerge.1 b/man/emerge.1 index e5830773..47149061 100644 --- a/man/emerge.1 +++ b/man/emerge.1 @@ -403,8 +403,10 @@ analogous options that should be configured via \fBMAKEOPTS\fR in \fBmake.conf\fR(5). .TP .BR "\-\-newuse " (\fB\-N\fR) -Tells emerge to include installed packages where USE flags have changed since -compilation. USE flag changes include: +Tells emerge to include installed packages where USE +flags have changed since compilation. This option +also implies the \fB\-\-selective\fR option. +USE flag changes include: A USE flag was added to a package. A USE flag was removed from a package. diff --git a/pym/_emerge/help.py b/pym/_emerge/help.py index 82f0666c..88b818cf 100644 --- a/pym/_emerge/help.py +++ b/pym/_emerge/help.py @@ -442,8 +442,11 @@ def help(myopts, havecolor=1): print(desc_indent + line) print() print(" "+green("--newuse")+" ("+green("-N")+" short option)") - print(" Tells emerge to include installed packages where USE flags have ") - print(" changed since installation.") + desc = "Tells emerge to include installed packages where USE " + \ + "flags have changed since compilation. This option " + \ + "also implies the --selective option." + for line in wrap(desc, desc_width): + print(desc_indent + line) print() print(" "+green("--noconfmem")) print(" Portage keeps track of files that have been placed into") |