diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2013-07-25 10:00:51 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2013-07-26 13:47:11 -0300 |
commit | e449ff7a1f0d08ca2f416de2a92f7a5194ea1273 (patch) | |
tree | 2bbe35641e804a2401356712f231de92423ef364 | |
parent | 1a801d0e33abe08e042f33c044f1bc1e12e05397 (diff) | |
download | meta-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.bbappend | 2 |
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 |
41 | do_install_append_mx6 () { | 41 | do_install_append_mx6 () { |
42 | rm ${D}${libdir}/libGL.* | 42 | rm -f ${D}${libdir}/libGL.* |
43 | } | 43 | } |