From: Richard Purdie <richard.purdie@linuxfoundation.org>
To: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH] eglibc: fix evacuate_scripts for external toolchains
Date: Fri, 25 Jan 2013 14:33:37 +0000 [thread overview]
Message-ID: <1359124417.13917.3.camel@ted> (raw)
In-Reply-To: <1359124075-3504-1-git-send-email-marcin.juszkiewicz@linaro.org>
On Fri, 2013-01-25 at 15:27 +0100, Marcin Juszkiewicz wrote:
> Not every external toolchain has mtrace/sotruss/xtrace scripts so check
> their existance first.
>
> Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
> ---
> meta/recipes-core/eglibc/eglibc-package.inc | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/meta/recipes-core/eglibc/eglibc-package.inc b/meta/recipes-core/eglibc/eglibc-package.inc
> index 79c43f1..4a4e54a 100644
> --- a/meta/recipes-core/eglibc/eglibc-package.inc
> +++ b/meta/recipes-core/eglibc/eglibc-package.inc
> @@ -113,7 +113,9 @@ do_evacuate_scripts () {
> target=${D}${includedir}/eglibc-scripts-internal-${MULTIMACH_TARGET_SYS}
> mkdir -p $target
> for i in ${bashscripts}; do
> - cp ${D}${bindir}/$i $target/
> + if [ -f ${D}${bindir}/$i ]; then
> + cp ${D}${bindir}/$i $target/
> + fi
> done
> }
At least lets try and indent it consistently :)
Cheers,
Richard
next prev parent reply other threads:[~2013-01-25 14:49 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-25 14:27 [PATCH] eglibc: fix evacuate_scripts for external toolchains Marcin Juszkiewicz
2013-01-25 14:32 ` Giuseppe CONDORELLI
2013-01-25 14:33 ` Richard Purdie [this message]
2013-01-25 14:42 ` Marcin Juszkiewicz
2013-01-25 14:35 ` Giuseppe CONDORELLI
2013-01-25 14:36 ` Martin Jansa
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=1359124417.13917.3.camel@ted \
--to=richard.purdie@linuxfoundation.org \
--cc=marcin.juszkiewicz@linaro.org \
--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