summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2013-07-25 10:00:51 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2013-07-26 13:47:11 -0300
commite449ff7a1f0d08ca2f416de2a92f7a5194ea1273 (patch)
tree2bbe35641e804a2401356712f231de92423ef364
parent1a801d0e33abe08e042f33c044f1bc1e12e05397 (diff)
downloadmeta-fsl-arm-e449ff7a1f0d08ca2f416de2a92f7a5194ea1273.tar.gz
mesa: Don't fail if libGL is not build
When doing a x11-less system, build fails as mesa won't build libGL. Avoid this making 'rm' use '-f' option. Change-Id: Ia018d1c9a39e6ec6b4008b76659b1e6aa829d6c2 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-graphics/mesa/mesa_9.1.5.bbappend2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-graphics/mesa/mesa_9.1.5.bbappend b/recipes-graphics/mesa/mesa_9.1.5.bbappend
index 4b3b10b..5b3c927 100644
--- a/recipes-graphics/mesa/mesa_9.1.5.bbappend
+++ b/recipes-graphics/mesa/mesa_9.1.5.bbappend
@@ -39,5 +39,5 @@ python __anonymous () {
39 39
40# FIXME: Dirty hack to allow use of Vivante GPU libGL binary 40# FIXME: Dirty hack to allow use of Vivante GPU libGL binary
41do_install_append_mx6 () { 41do_install_append_mx6 () {
42 rm ${D}${libdir}/libGL.* 42 rm -f ${D}${libdir}/libGL.*
43} 43}