summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorGordan Markuš <gordan.markus@pelagicore.com>2017-07-04 09:50:54 +0200
committerGordan Markus <gordan.markus@pelagicore.com>2017-08-11 06:56:38 +0000
commita480c24569a7f057aa56fcf820eefc9ed556b70f (patch)
tree72fc0838ebbb97f1ae64b49aed134e010a0a51e2 /classes
parent5fe807f9cecfb5567eec620c7c10f71210aafa48 (diff)
downloadmeta-boot2qt-a480c24569a7f057aa56fcf820eefc9ed556b70f.tar.gz
remove-libtool: remove bbclass that exists in poky
The same bbclass recipe exists in mainline poky pyro branch. Change-Id: Ib272eefc829ded89d4d59333bead84839b99e128 Reviewed-by: Richard Pannek <richard.pannek@pelagicore.com> Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
Diffstat (limited to 'classes')
-rw-r--r--classes/remove-libtool.bbclass11
1 files changed, 0 insertions, 11 deletions
diff --git a/classes/remove-libtool.bbclass b/classes/remove-libtool.bbclass
deleted file mode 100644
index 0d7bd21..0000000
--- a/classes/remove-libtool.bbclass
+++ /dev/null
@@ -1,11 +0,0 @@
1# This class removes libtool .la files after do_install
2
3REMOVE_LIBTOOL_LA ?= "1"
4
5remove_libtool_la() {
6 if [ "${REMOVE_LIBTOOL_LA}" != "0" ]; then
7 find "${D}" -ignore_readdir_race -name "*.la" -delete
8 fi
9}
10
11do_install[postfuncs] += "remove_libtool_la"