summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2014-09-04 21:05:06 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2014-09-04 22:11:38 -0300
commitd1763d3ae70a8c7d123ae5caa4fb8c0533fb5438 (patch)
treec6c6d130d54b177c4b9e436665be3e3178133c7a
parent3d5151a453cd08f356b2161c37303e07c6b1798d (diff)
downloadmeta-fsl-arm-d1763d3ae70a8c7d123ae5caa4fb8c0533fb5438.tar.gz
gpu-viv-bin-mx6q: Fix libOpenVG link when building for mx6sl
The ab83159 (gpu-viv-bin-mx6q: Include sololite changes to remove 3Dx libraries.) reworked the libraries available for mx6sl case however the symbolic link was wrong. It points to the work instalation directory. This resulted in: ,---- | ibOpenVG_355.so | ibOpenVG.so -> .../tmp/work/.../image/usr/lib/libOpenVG_355.so `---- While the expected is: ,---- | libOpenVG_355.so | libOpenVG.so -> libOpenVG_355.so `---- This patch fixes is to use a relative link, fixing OpenVG based application builds from a clean tmp directory or using rm_work class. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc b/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc
index 4fb9172..0120207 100644
--- a/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc
+++ b/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc
@@ -205,7 +205,7 @@ do_install () {
205 ${D}/opt/viv_samples/vdk \ 205 ${D}/opt/viv_samples/vdk \
206 ${D}/opt/viv_samples/es20 ${D}/opt/viv_samples/cl11 206 ${D}/opt/viv_samples/es20 ${D}/opt/viv_samples/cl11
207 207
208 ln -sf ${D}${libdir}/libOpenVG_355.so ${D}${libdir}/libOpenVG.so 208 ln -sf libOpenVG_355.so ${D}${libdir}/libOpenVG.so
209 fi 209 fi
210 210
211 find ${D}${libdir} -type f -exec chmod 644 {} \; 211 find ${D}${libdir} -type f -exec chmod 644 {} \;