summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2013-04-11 11:47:00 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2013-04-17 18:20:22 -0300
commit6daa86ae6103912b76043d20fea21f116e0b7e10 (patch)
tree5b049e8fce242cd7c363ceb8d936762990b7cc47
parent74af82332fcec03f19f278024ad131c7c6eb3f53 (diff)
downloadmeta-fsl-arm-6daa86ae6103912b76043d20fea21f116e0b7e10.tar.gz
xf86-dri-vivante: Ensure install fails if .la cannot be removed
To ensure we catch when the makefile stops to install the .la file, we ensure the install fails in case .la file does not exist. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-graphics/xorg-driver/xf86-dri-vivante_1.1.0.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-graphics/xorg-driver/xf86-dri-vivante_1.1.0.bb b/recipes-graphics/xorg-driver/xf86-dri-vivante_1.1.0.bb
index aa2361a..975041d 100644
--- a/recipes-graphics/xorg-driver/xf86-dri-vivante_1.1.0.bb
+++ b/recipes-graphics/xorg-driver/xf86-dri-vivante_1.1.0.bb
@@ -28,8 +28,8 @@ do_install_append () {
28 cp -axr ${S}/src/*.h ${D}${includedir}/xorg 28 cp -axr ${S}/src/*.h ${D}${includedir}/xorg
29 find ${D}${includedir} -type f -exec chmod 660 {} \; 29 find ${D}${includedir} -type f -exec chmod 660 {} \;
30 30
31 # don't install libtool (*.la) archive not usefull, fix Makefile.am 31 # FIXME: don't install libtool (*.la) file
32 find ${D}${libdir}/xorg/modules -regex ".*\.la$" | xargs rm -f -- 32 rm ${D}${libdir}/xorg/modules/extensions/*.la
33} 33}
34 34
35FILES_${PN}-dev += "${includedir}/xorg/*.h" 35FILES_${PN}-dev += "${includedir}/xorg/*.h"