* Refer user to make.conf(5) if PORTAGE_IONICE_COMMAND fails.
authorZac Medico <zmedico@gentoo.org>
Thu, 24 Jul 2008 22:16:20 +0000 (22:16 -0000)
committerZac Medico <zmedico@gentoo.org>
Thu, 24 Jul 2008 22:16:20 +0000 (22:16 -0000)
* Document that PORTAGE_IONICE_COMMAND can be disabled by setting it
  to an empty string.

svn path=/main/trunk/; revision=11183

man/make.conf.5
pym/_emerge/__init__.py

index 36db9d5365887e0f38ea1368fdac8aa3643b9424..875060da2dc0ae216ebd50c9075cfbd472ef570d 100644 (file)
@@ -464,6 +464,8 @@ This variable should contain a command for portage to call in order
 to adjust the io priority of portage and it's subprocesses. The command
 string should contain a \\${PID} place-holder that will be substituted
 with an integer pid. For more information about ionice, see \fBionice\fR(1).
+Set this variable to an empty string if you do not want portage to call
+ionice.
 .br
 Defaults to "ionice -c 2 -n 7 -p \\${PID}".
 .TP
index 6c25bafd3e67e2a4701ed12d22fa837edf9e2f0f..cf43a9efef3b61d42e1dcc820e702422a4f6cc85 100644 (file)
@@ -12868,6 +12868,7 @@ def ionice(settings):
        if rval != os.EX_OK:
                out = portage.output.EOutput()
                out.eerror("PORTAGE_IONICE_COMMAND returned %d" % (rval,))
+               out.eerror("See the make.conf(5) man page for PORTAGE_IONICE_COMMAND usage instructions.")
 
 def emerge_main():
        global portage  # NFC why this is necessary now - genone