From: Otavio Salvador Date: Thu, 11 Apr 2013 14:47:00 +0000 (-0300) Subject: xf86-dri-vivante: Ensure install fails if .la cannot be removed X-Git-Tag: 2.1~1417 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e238afe408be61a3990384c3f4d8528889086adf;p=meta-freescale.git 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 --- diff --git a/meta-fsl-arm/recipes-graphics/xorg-driver/xf86-dri-vivante_1.1.0.bb b/meta-fsl-arm/recipes-graphics/xorg-driver/xf86-dri-vivante_1.1.0.bb index aa2361a5..975041d4 100644 --- a/meta-fsl-arm/recipes-graphics/xorg-driver/xf86-dri-vivante_1.1.0.bb +++ b/meta-fsl-arm/recipes-graphics/xorg-driver/xf86-dri-vivante_1.1.0.bb @@ -28,8 +28,8 @@ do_install_append () { cp -axr ${S}/src/*.h ${D}${includedir}/xorg find ${D}${includedir} -type f -exec chmod 660 {} \; - # don't install libtool (*.la) archive not usefull, fix Makefile.am - find ${D}${libdir}/xorg/modules -regex ".*\.la$" | xargs rm -f -- + # FIXME: don't install libtool (*.la) file + rm ${D}${libdir}/xorg/modules/extensions/*.la } FILES_${PN}-dev += "${includedir}/xorg/*.h"