aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mesa
diff options
context:
space:
mode:
authorMichael Smith <msmith@cbnco.com>2009-08-26 09:27:37 -0400
committerMichael Smith <msmith@cbnco.com>2009-08-26 09:31:21 -0400
commit22d0437ddef643e0540fbd5abbe3392ed7905d56 (patch)
tree34df9fef4119d847764fbd4f539d6b5c1df82528 /recipes/mesa
parent356c86ab3c6972029ef8a8a549a6ed2e38287207 (diff)
downloadopenembedded-22d0437ddef643e0540fbd5abbe3392ed7905d56.tar.gz
mesa-common.inc: avoid bashism
Closes bug #5307. Signed-off-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'recipes/mesa')
-rw-r--r--recipes/mesa/mesa-common.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes/mesa/mesa-common.inc b/recipes/mesa/mesa-common.inc
index d7bfc148c5..ccfe504d54 100644
--- a/recipes/mesa/mesa-common.inc
+++ b/recipes/mesa/mesa-common.inc
@@ -42,5 +42,7 @@ do_stage() {
do_install_append () {
install -d ${D}/${bindir}
- install -m 0755 ${S}/progs/xdemos/{glxdemo,glxgears,glxheads,glxinfo} ${D}/${bindir}
+ for i in glxdemo glxgears glxheads glxinfo; do
+ install -m 0755 ${S}/progs/xdemos/${i} ${D}/${bindir}
+ done
}