From: Philip Balister <philip@balister.org>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [STABLE] [PATCH] base.bbclass: Replace os.system with subprocess call.
Date: Mon, 23 Nov 2009 10:12:40 -0500 [thread overview]
Message-ID: <4B0AA668.3030500@balister.org> (raw)
In-Reply-To: <1258836735.21876.2.camel@runt>
Acked-by: Philip Balister <philip@balister.org>
On 11/21/2009 03:52 PM, Cory Maccarrone wrote:
> (This patch is being submitted on behalf of Khem Raj. I am not the original
> author, nor do I claim any part of this work.)
> --------------
>
> Often gzip is reporting broken pipe errors with do_unpack of
> tar.gz files.
>
> If you use the commands described above to extract a tar.gz file, gzip
> sometimes emits a Broken pipe error message. This can safely be ignored
> if tar extracted all files without any other error message.
>
> We do not let python install its SIGPIPE handler and use subprocess call
> to invoke the command.
>
> This is based on the following python bug report.
> http://bugs.python.org/issue1652
>
> Signed-off-by: Khem Raj<raj.khem@gmail.com>
> ---
> classes/base.bbclass | 9 +++++++--
> 1 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/classes/base.bbclass b/classes/base.bbclass
> index e622aee..69d1979 100644
> --- a/classes/base.bbclass
> +++ b/classes/base.bbclass
> @@ -716,9 +716,14 @@ base_do_buildall() {
> :
> }
>
> +def subprocess_setup():
> + import signal, subprocess
> + # Python installs a SIGPIPE handler by default. This is usually not what
> + # non-Python subprocesses expect.
> + signal.signal(signal.SIGPIPE, signal.SIG_DFL)
>
> def oe_unpack_file(file, data, url = None):
> - import bb, os
> + import bb, os, signal, subprocess
> if not url:
> url = "file://%s" % file
> dots = file.split(".")
> @@ -787,7 +792,7 @@ def oe_unpack_file(file, data, url = None):
>
> cmd = "PATH=\"%s\" %s" % (bb.data.getVar('PATH', data, 1), cmd)
> bb.note("Unpacking %s to %s/" % (base_path_out(file, data), base_path_out(os.getcwd(), data)))
> - ret = os.system(cmd)
> + ret = subprocess.call(cmd, preexec_fn=subprocess_setup, shell=True)
>
> os.chdir(save_cwd)
>
prev parent reply other threads:[~2009-11-23 15:14 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-21 20:52 [STABLE] [PATCH] base.bbclass: Replace os.system with subprocess call Cory Maccarrone
2009-11-22 18:54 ` Marcin Juszkiewicz
2009-11-23 15:12 ` Philip Balister [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B0AA668.3030500@balister.org \
--to=philip@balister.org \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox