[OE-core] [PATCH] eglibc: fix evacuate_scripts for external toolchains

Giuseppe CONDORELLI giuseppe.condorelli at st.com
Fri Jan 25 14:35:31 UTC 2013


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.condorelli at st.com]
>Sent: venerdì 25 gennaio 2013 15:32
>To: 'Marcin Juszkiewicz'; 'openembedded-core at 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-bounces at lists.openembedded.org
>>[mailto:openembedded-core-bounces at lists.openembedded.org] On Behalf
>Of
>>Marcin Juszkiewicz
>>Sent: venerdì 25 gennaio 2013 15:28
>>To: openembedded-core at 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 at 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 at lists.openembedded.org
>>http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core





More information about the Openembedded-core mailing list