[oe-commits] Michael Smith : mesa-common.inc: avoid bashism

git version control git at git.openembedded.org
Wed Aug 26 13:31:24 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 22d0437ddef643e0540fbd5abbe3392ed7905d56
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=22d0437ddef643e0540fbd5abbe3392ed7905d56

Author: Michael Smith <msmith at cbnco.com>
Date:   Wed Aug 26 09:27:37 2009 -0400

mesa-common.inc: avoid bashism

Closes bug #5307.

Signed-off-by: Michael Smith <msmith at cbnco.com>

---

 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 d7bfc14..ccfe504 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
 }





More information about the Openembedded-commits mailing list