diff options
author | Ross Burton <ross.burton@intel.com> | 2016-07-26 20:19:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-01 11:46:35 +0100 |
commit | d6d15924a7b3fe668d4c7e88fd4c90b0d580f2ed (patch) | |
tree | 0720042a38b7597b6c41cf9e07c54940a756c98a /meta/recipes-kernel | |
parent | 8af17075f56241dd8f3ea86c609adbd73f248218 (diff) | |
download | openembedded-core-d6d15924a7b3fe668d4c7e88fd4c90b0d580f2ed.tar.gz openembedded-core-d6d15924a7b3fe668d4c7e88fd4c90b0d580f2ed.tar.bz2 openembedded-core-d6d15924a7b3fe668d4c7e88fd4c90b0d580f2ed.zip |
sysprof: clean up FILES
This recipe ships unversioned libraries so fiddle the intermediate variables
instead of rewriting FILES directly.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/sysprof/sysprof_git.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-kernel/sysprof/sysprof_git.bb b/meta/recipes-kernel/sysprof/sysprof_git.bb index 6324d20f65..8d8b626397 100644 --- a/meta/recipes-kernel/sysprof/sysprof_git.bb +++ b/meta/recipes-kernel/sysprof/sysprof_git.bb @@ -30,8 +30,9 @@ PACKAGECONFIG ?= "${@bb.utils.contains_any('DISTRO_FEATURES', '${GTK3DISTROFEATU PACKAGECONFIG[gtk] = "--enable-gtk,--disable-gtk,gtk+3" PACKAGECONFIG[polkit] = "--enable-polkit,--disable-polkit,polkit dbus" -FILES_${PN} += "${datadir}/icons/ ${libdir}/libsysprof* ${datadir}/dbus-1/" -FILES_${PN}-dev = "${includedir} ${libdir}/pkgconfig" +SOLIBS = ".so" +FILES_SOLIBSDEV = "" +FILES_${PN} += "${datadir}/icons/" SYSTEMD_SERVICE_${PN} = "${@bb.utils.contains('PACKAGECONFIG', 'polkit', 'sysprof2.service', '', d)}" |