git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
356c86a
)
mesa-common.inc: avoid bashism
author
Michael Smith
<msmith@cbnco.com>
Wed, 26 Aug 2009 13:27:37 +0000
(09:27 -0400)
committer
Michael Smith
<msmith@cbnco.com>
Wed, 26 Aug 2009 13:31:21 +0000
(09:31 -0400)
Closes bug #5307.
Signed-off-by: Michael Smith <msmith@cbnco.com>
recipes/mesa/mesa-common.inc
patch
|
blob
|
history
diff --git
a/recipes/mesa/mesa-common.inc
b/recipes/mesa/mesa-common.inc
index
d7bfc14
..
ccfe504
100644
(file)
--- 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
}