From: Zac Medico Date: Wed, 22 Sep 2010 02:54:29 +0000 (-0700) Subject: In EbuildIpc._wait(), use waitpid() instead of wait() since we really X-Git-Tag: v2.2_rc86~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ba3aa65497522f7110a7149ad3d861bd31adc4b0;p=portage.git In EbuildIpc._wait(), use waitpid() instead of wait() since we really only need to wait on one process. --- diff --git a/bin/ebuild-ipc.py b/bin/ebuild-ipc.py index 28352b56d..f8ec881c8 100755 --- a/bin/ebuild-ipc.py +++ b/bin/ebuild-ipc.py @@ -110,7 +110,7 @@ class EbuildIpc(object): self._no_daemon_msg() try: os.kill(pid, signal.SIGKILL) - os.wait() + os.waitpid(pid, 0) except OSError as e: portage.util.writemsg_level( "ebuild-ipc: %s\n" % (e,),