All of lore.kernel.org
 help / color / mirror / Atom feed
From: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
To: "'Marcin Juszkiewicz'" <marcin.juszkiewicz@linaro.org>,
	<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH] eglibc: fix evacuate_scripts for external	toolchains
Date: Fri, 25 Jan 2013 15:32:21 +0100	[thread overview]
Message-ID: <094b01cdfb08$c967ddf0$5c3799d0$@st.com> (raw)
In-Reply-To: <1359124075-3504-1-git-send-email-marcin.juszkiewicz@linaro.org>

Well done Marcin,
I've just  met this issue working with my local external-toolchain and I had
to
locally patch the same .inc for checking. :)

Thanks for having highlighted that in the mailing list.
Regards,
Giuseppe

>-----Original Message-----
>From: openembedded-core-bounces@lists.openembedded.org
>[mailto:openembedded-core-bounces@lists.openembedded.org] On Behalf
>Of Marcin Juszkiewicz
>Sent: venerdì 25 gennaio 2013 15:28
>To: openembedded-core@lists.openembedded.org
>Subject: [OE-core] [PATCH] eglibc: fix evacuate_scripts for external
toolchains
>
>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
> }
>
>--
>1.8.0
>
>
>_______________________________________________
>Openembedded-core mailing list
>Openembedded-core@lists.openembedded.org
>http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core




  reply	other threads:[~2013-01-25 17:51 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 [this message]
2013-01-25 14:33 ` Richard Purdie
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='094b01cdfb08$c967ddf0$5c3799d0$@st.com' \
    --to=giuseppe.condorelli@st.com \
    --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 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.