libpcre_%.bbappend: add missing symlink libpcre.so.1

This bbappend moves sysroot lib libpcre.so.x.x.x from /usr/lib to /lib
and symlinks /usr/lib/libpcre.so to ../../lib/libpcre.so.x.x.x, but this
causes certain recipes dependent on libpcre (like pango) to fail because
they also expect libpcre.so.1 to exist which this recipe omits to create.

(the reason why the lib is moved in the first place is to avoid a QA issue
because there's a risk for /usr to be on another partition)

Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
This commit is contained in:
Ioan-Adrian Ratiu 2016-10-31 16:06:53 +02:00 committed by Joe MacDonald
parent a5f71f180d
commit 2f8861779c

View File

@ -7,6 +7,7 @@ do_install_append () {
mv -f ${D}${libdir}/libpcre.so.* ${D}${base_libdir}/
relpath=${@os.path.relpath("${base_libdir}", "${libdir}")}
ln -sf ${relpath}/${realsofile} ${D}${libdir}/libpcre.so
ln -sf ${relpath}/${realsofile} ${D}${libdir}/libpcre.so.1
fi
}