diff options
author | Michael Smith <msmith@cbnco.com> | 2009-08-26 09:27:37 -0400 |
---|---|---|
committer | Michael Smith <msmith@cbnco.com> | 2009-08-26 09:31:21 -0400 |
commit | 22d0437ddef643e0540fbd5abbe3392ed7905d56 (patch) | |
tree | 34df9fef4119d847764fbd4f539d6b5c1df82528 | |
parent | 356c86ab3c6972029ef8a8a549a6ed2e38287207 (diff) |
mesa-common.inc: avoid bashism
Closes bug #5307.
Signed-off-by: Michael Smith <msmith@cbnco.com>
-rw-r--r-- | recipes/mesa/mesa-common.inc | 4 |
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 } |