public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH] eglibc: fix evacuate_scripts for external toolchains
@ 2013-01-25 14:27 Marcin Juszkiewicz
  2013-01-25 14:32 ` Giuseppe CONDORELLI
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Marcin Juszkiewicz @ 2013-01-25 14:27 UTC (permalink / raw)
  To: openembedded-core

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




^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-01-25 17:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2013-01-25 14:42   ` Marcin Juszkiewicz
2013-01-25 14:35 ` Giuseppe CONDORELLI
2013-01-25 14:36 ` Martin Jansa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox