However, what about the resultant libraries as well as libsotruss?
Do we have to also to remove them from file inclusion to avoid warnings?

Cheers,
Giuseppe

>-----Original Message-----
>From: Giuseppe Condorelli [mailto:giuseppe.condore...@st.com]
>Sent: venerdì 25 gennaio 2013 15:32
>To: 'Marcin Juszkiewicz'; 'openembedded-core@lists.openembedded.org'
>Subject: RE: [OE-core] [PATCH] eglibc: fix evacuate_scripts for external
>toolchains
>
>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-boun...@lists.openembedded.org
>>[mailto:openembedded-core-boun...@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.juszkiew...@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


_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

Reply via email to