Commit dff65e82 authored by Florent Revest's avatar Florent Revest

Temporarily backport remove-libtool.bbclass from oe-core krogoth to be able to use meta-qt5 krogoth

parent efc30eaa
# This class removes libtool .la files after do_install
REMOVE_LIBTOOL_LA ?= "1"
remove_libtool_la() {
if [ "${REMOVE_LIBTOOL_LA}" != "0" ]; then
find "${D}" -ignore_readdir_race -name "*.la" -delete
fi
}
do_install[postfuncs] += "remove_libtool_la"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment