Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Saul Wold <sgw@linux.intel.com>
To: Patches and discussions about the oe-core layer
	<openembedded-core@lists.openembedded.org>
Cc: Enrico Scholz <enrico.scholz@sigma-chemnitz.de>
Subject: Re: [PATCH] package.bbclass: quote pathname given to objdump
Date: Tue, 17 Jan 2012 11:38:00 -0800	[thread overview]
Message-ID: <4F15CE18.1080002@linux.intel.com> (raw)
In-Reply-To: <1326385824-32201-1-git-send-email-enrico.scholz@sigma-chemnitz.de>

On 01/12/2012 08:30 AM, Enrico Scholz wrote:
> Packaging will fail with executable files containing spaces in their
> names. Patch quotes the parameter passed to 'objdump'.
>
> Signed-off-by: Enrico Scholz<enrico.scholz@sigma-chemnitz.de>
> ---
>   meta/classes/package.bbclass |    4 ++--
>   1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
> index f8f0a12..1088470 100644
> --- a/meta/classes/package.bbclass
> +++ b/meta/classes/package.bbclass
> @@ -1205,7 +1205,7 @@ SHLIBSDIR = "${STAGING_DIR_HOST}/shlibs"
>   SHLIBSWORKDIR = "${WORKDIR}/shlibs"
>
>   python package_do_shlibs() {
> -	import re
> +	import re, pipes
>
>   	exclude_shlibs = d.getVar('EXCLUDE_FROM_SHLIBS', 0)
>   	if exclude_shlibs:
> @@ -1234,7 +1234,7 @@ python package_do_shlibs() {
>   	lf = bb.utils.lockfile(bb.data.expand("${PACKAGELOCK}", d))
>
>   	def linux_so(root, path, file):
> -		cmd = d.getVar('OBJDUMP', True) + " -p " + os.path.join(root, file) + " 2>/dev/null"
> +		cmd = d.getVar('OBJDUMP', True) + " -p " + pipes.quote(os.path.join(root, file)) + " 2>/dev/null"
>   		cmd = "PATH=\"%s\" %s" % (d.getVar('PATH', True), cmd)
>   		fd = os.popen(cmd)
>   		lines = fd.readlines()

Merged into OE-Core

Thanks	
	Sau!



      reply	other threads:[~2012-01-17 19:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-12 16:30 [PATCH] package.bbclass: quote pathname given to objdump Enrico Scholz
2012-01-17 19:38 ` Saul Wold [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=4F15CE18.1080002@linux.intel.com \
    --to=sgw@linux.intel.com \
    --cc=enrico.scholz@sigma-chemnitz.de \
    --cc=openembedded-core@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