mesa-common.inc: avoid bashism
authorMichael Smith <msmith@cbnco.com>
Wed, 26 Aug 2009 13:27:37 +0000 (09:27 -0400)
committerMichael 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

index d7bfc14..ccfe504 100644 (file)
@@ -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
 }