summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/eglibc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/eglibc')
-rw-r--r--meta/recipes-core/eglibc/eglibc-package.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-package.inc b/meta/recipes-core/eglibc/eglibc-package.inc
index dae5d4f015..72ff6b85c0 100644
--- a/meta/recipes-core/eglibc/eglibc-package.inc
+++ b/meta/recipes-core/eglibc/eglibc-package.inc
@@ -117,7 +117,9 @@ do_evacuate_scripts () {
117 target=${D}${includedir}/eglibc-scripts-internal-${MULTIMACH_TARGET_SYS} 117 target=${D}${includedir}/eglibc-scripts-internal-${MULTIMACH_TARGET_SYS}
118 mkdir -p $target 118 mkdir -p $target
119 for i in ${bashscripts}; do 119 for i in ${bashscripts}; do
120 cp ${D}${bindir}/$i $target/ 120 if [ -f ${D}${bindir}/$i ]; then
121 cp ${D}${bindir}/$i $target/
122 fi
121 done 123 done
122} 124}
123 125