libpcre: drop bbappend

This bbappend was added long time ago and it is useless now.

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
This commit is contained in:
Yi Zhao 2021-08-19 12:46:58 +08:00 committed by Joe MacDonald
parent cad53c28de
commit 57b730709e
2 changed files with 0 additions and 19 deletions

View File

@ -1 +0,0 @@
require ${@bb.utils.contains('DISTRO_FEATURES', 'selinux', '${BPN}_selinux.inc', '', d)}

View File

@ -1,18 +0,0 @@
do_install:append () {
# This code creates libpcre for both the dev machine (SDK native)
# and for cross-compiling (machine arch). For Linux (SDK Linux native
# + all machine arch), symlinks to the .so files have to be created,
# but not for the Windows SDK native.
if [ ${TARGET_OS} != "mingw32" ]; then
if [ ! ${D}${libdir} -ef ${D}${base_libdir} -a -e ${D}${libdir}/libpcre.so ]; then
realsofile=`readlink ${D}${libdir}/libpcre.so`
mkdir -p ${D}/${base_libdir}/
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
fi
}
FILES:${PN} += "${base_libdir}/libpcre.so.*"