From: Richard Purdie <richard.purdie@linuxfoundation.org>
To: Chen Qi <Qi.Chen@windriver.com>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 2/2] populate_sdk_base: avoid executing empty function
Date: Fri, 24 Apr 2015 08:20:29 +0100 [thread overview]
Message-ID: <1429860029.26983.127.camel@linuxfoundation.org> (raw)
In-Reply-To: <2894e3f1ce4dc1dc2a6ab45859b0425e21184a7a.1429858183.git.Qi.Chen@windriver.com>
On Fri, 2015-04-24 at 14:50 +0800, Chen Qi wrote:
> `bitbake uninative-tarball' raises the following warning.
>
> WARNING: Function doesn't exist
>
> This is because SDK_PACKAGING_FUNC is set to "" in its recipe.
> Anyway, we need to check this variable to avoid executing empty function.
>
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
> meta/classes/populate_sdk_base.bbclass | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass
> index 5c07693..6e3e84f 100644
> --- a/meta/classes/populate_sdk_base.bbclass
> +++ b/meta/classes/populate_sdk_base.bbclass
> @@ -94,7 +94,11 @@ fakeroot python do_populate_sdk() {
>
> bb.build.exec_func("tar_sdk", d)
>
> - bb.build.exec_func(d.getVar("SDK_PACKAGING_FUNC", True), d)
> + sdk_packaging_func = d.getVar("SDK_PACKAGING_FUNC", True)
> + if sdk_packaging_func:
> + sdk_packaging_func = sdk_packaging_func.strip()
> + if sdk_packaging_func != "":
> + bb.build.exec_func(d.getVar("SDK_PACKAGING_FUNC", True), d)
This is slightly overcomplicated. You can just do something like:
sdk_packaging_func = d.getVar("SDK_PACKAGING_FUNC", True) or ""
if sdk_packaging_func.strip():
bb.build.exec_func(sdk_packaging_func, d)
Cheers,
Richard
next prev parent reply other threads:[~2015-04-24 7:20 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-24 6:50 [PATCH 0/2] Two fixes related to uninative-tarball Chen Qi
2015-04-24 6:50 ` [PATCH 1/2] uninative-tarball: delete the packagedata task Chen Qi
2015-04-24 6:50 ` [PATCH 2/2] populate_sdk_base: avoid executing empty function Chen Qi
2015-04-24 7:20 ` Richard Purdie [this message]
2015-04-24 8:14 ` ChenQi
2015-04-24 8:46 ` Paul Eggleton
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=1429860029.26983.127.camel@linuxfoundation.org \
--to=richard.purdie@linuxfoundation.org \
--cc=Qi.Chen@windriver.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox