mirror of
https://git.yoctoproject.org/poky
synced 2026-03-11 17:59:39 +01:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
476 B
BlitzBasic
18 lines
476 B
BlitzBasic
require libcap-ng.inc
|
|
|
|
inherit lib_package autotools
|
|
|
|
EXTRA_OECONF += "--without-python --without-python3"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
do_install:append() {
|
|
# Moving libcap-ng to base_libdir
|
|
if [ ! ${D}${libdir} -ef ${D}${base_libdir} ]; then
|
|
mkdir -p ${D}/${base_libdir}/
|
|
mv -f ${D}${libdir}/libcap-ng.so.* ${D}${base_libdir}/
|
|
relpath=${@os.path.relpath("${base_libdir}", "${libdir}")}
|
|
ln -sf ${relpath}/libcap-ng.so.0.0.0 ${D}${libdir}/libcap-ng.so
|
|
fi
|
|
}
|