mirror of
git://git.yoctoproject.org/meta-selinux
synced 2026-01-01 13:58:04 +00:00
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:
parent
a5f71f180d
commit
2f8861779c
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user