From 1969d46bc6d2db1db6888efd0db3fa7d6f0414dd Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 21 Dec 2010 22:09:52 +0000 Subject: [PATCH] talloc: install .so links * otherwise mesa finds talloc.pc, but doesn't link to libtalloc.so.2 in the end Acked-by: Koen Kooi Signed-off-by: Martin Jansa --- recipes/talloc/talloc_2.0.1.bb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/recipes/talloc/talloc_2.0.1.bb b/recipes/talloc/talloc_2.0.1.bb index 9514a15c67..80f4b37b03 100644 --- a/recipes/talloc/talloc_2.0.1.bb +++ b/recipes/talloc/talloc_2.0.1.bb @@ -10,8 +10,17 @@ SRC_URI[sha256sum] = "5b810527405f29d54f50efd78bf2c89e318f2cd8bed001f22f2a1412fd TARGET_CC_ARCH += "${LDFLAGS}" +PR = "r1" + # autoreconf doesn't work well while reconfiguring included libreplace do_configure () { gnu-configize oe_runconf } + +do_install_append() { + install -d ${D}${libdir} + ln -s libtalloc.so.2.0.1 ${D}${libdir}/libtalloc.so.2.0 + ln -s libtalloc.so.2.0 ${D}${libdir}/libtalloc.so.2 + ln -s libtalloc.so.2 ${D}${libdir}/libtalloc.so +} -- 2.39.5