From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH] classes/chrpath: trigger an error if chrpath fails
Date: Thu, 16 Aug 2012 18:13:11 +0100 [thread overview]
Message-ID: <1566766.76zJMGCy1b@helios> (raw)
In-Reply-To: <1345049073-27898-1-git-send-email-paul.eggleton@linux.intel.com>
On Wednesday 15 August 2012 17:44:33 Paul Eggleton wrote:
> If chrpath failed here we were just silently ignoring it.
>
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> ---
> meta/classes/chrpath.bbclass | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/meta/classes/chrpath.bbclass b/meta/classes/chrpath.bbclass
> index 10b5ca0..ad61fe0 100644
> --- a/meta/classes/chrpath.bbclass
> +++ b/meta/classes/chrpath.bbclass
> @@ -74,7 +74,9 @@ def process_dir (directory, d):
> if len(new_rpaths):
> args = ":".join(new_rpaths)
> #bb.note("Setting rpath for %s to %s" %(fpath, args))
> - sub.call([cmd, '-r', args, fpath])
> + ret = sub.call([cmd, '-r', args, fpath])
> + if ret != 0:
> + bb.error("chrpath command failed with exit code %d" %
> ret)
>
> if perms:
> os.chmod(fpath, perms)
I missed that this does not actually report the output from chrpath when it
fails because the task log is suppressed by virtue of calling bb.error. I will
send a follow-up patch to address this.
Incidentally a couple of users are reporting that they are now seeing failures
where the rpath size is reported to be too small to contain the path we are
applying. I haven't seen this myself - is there some way we can increase the
space allowed for storing the path or is there some other issue at work here?
I tried to search for some information on how storage of the rpath works but
did not really find anything conclusive.
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
next prev parent reply other threads:[~2012-08-16 17:26 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-15 16:44 [PATCH] classes/chrpath: trigger an error if chrpath fails Paul Eggleton
2012-08-16 17:06 ` Saul Wold
2012-08-16 17:13 ` Paul Eggleton [this message]
2012-08-17 9:53 ` Richard Purdie
2012-08-17 10:05 ` Jack Mitchell
2012-08-17 10:26 ` Henning Heinold
2012-08-17 10:53 ` Jack Mitchell
2012-08-17 13:31 ` Paul Eggleton
2012-08-17 16:46 ` Richard Purdie
2012-08-18 0:39 ` Khem Raj
2012-08-17 10:03 ` Phil Blundell
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=1566766.76zJMGCy1b@helios \
--to=paul.eggleton@linux.intel.com \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.