mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
This is a partial revert of commit2ad5ceafa5[various classes recipes: Remove FILES entries for dbg/dev packages] to restore the packaging of libtool (.la) files. It is generally recommended to include 'remove-libtool' in your distro features to purge libtool files as a do_install postfunc for all recipes, as is the documented recommendation for handling of libtool files (unless the .la have been determined to be absolutely necessary, in which case a recipe can use the REMOVE_LIBTOOL_LA to prevent the cleanup). However, if the 'remove-libtool' distro feature is not specified we need to ensure that if after a recipe completes do_install() and there are libtool files present in the image, we must package them or we will hit 'installed-vs-shipped' QA issues. NOTE: that even with respect to libtool files this is not a 1:1 partial revert of commit2ad5ceafa5, adjustments are made according to the current state of the build today. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
12 lines
281 B
Plaintext
12 lines
281 B
Plaintext
inherit xfce distro_features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
DEPENDS += "thunar"
|
|
|
|
SRC_URI = "http://archive.xfce.org/src/thunar-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2"
|
|
|
|
FILES_${PN} += "${libdir}/thunarx-3/*.so"
|
|
|
|
FILES_${PN}-dev += "${libdir}/thunarx-3/*.la"
|