diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2017-08-26 14:58:58 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-27 22:30:06 +0100 |
commit | b5db9f05a184a75bebeed7de0de2a0031035f495 (patch) | |
tree | 9ca106c0bb7603262c90c0ff1aae962b4573a32b /meta/recipes-gnome/gnome | |
parent | 5b45fe40db81292dd6bb57b210d1e4ba32e65e9e (diff) | |
download | poky-b5db9f05a184a75bebeed7de0de2a0031035f495.tar.gz |
gnome-themes-standard: drop .la file as unused
oe-core commit 51b3ee298635b11d5784caaa0ac1c8f4034c25a5
[gnome-themes-standard: Fix packages so dev-pkgs image generation
works] disabled generation of the -dev pkg. Since a libtool archive
file was no longer being picked up by the -dev pkg the build will fail
with a QA issue (if ERROR_QA includes installed-vs-shipped):
ERROR: gnome-themes-standard-3.22.3-r0 do_package: QA Issue:
gnome-themes-standard: Files/directories were installed but not
shipped in any package:
/usr/lib64/gtk-2.0/2.10.0/engines/libadwaita.la
The libtool archive file is mostly useless in modern Linux with a
single shared library file so instead of including this in the -dev
pkg we simply drop it.
(From OE-Core rev: 77797a95569252024fca094d33ae9ecbc833597f)
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gnome')
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-themes-standard_3.22.3.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-themes-standard_3.22.3.bb b/meta/recipes-gnome/gnome/gnome-themes-standard_3.22.3.bb index 3b41328855..55ee277606 100644 --- a/meta/recipes-gnome/gnome/gnome-themes-standard_3.22.3.bb +++ b/meta/recipes-gnome/gnome/gnome-themes-standard_3.22.3.bb | |||
@@ -25,6 +25,9 @@ do_install_append() { | |||
25 | # Only building Adwaita, remove highcontrast files | 25 | # Only building Adwaita, remove highcontrast files |
26 | rm -rf ${D}${prefix}/share/themes/HighContrast \ | 26 | rm -rf ${D}${prefix}/share/themes/HighContrast \ |
27 | ${D}${prefix}/share/icons | 27 | ${D}${prefix}/share/icons |
28 | |||
29 | # The libtool archive file is unneeded with shared libs on modern Linux | ||
30 | rm -rf ${D}${libdir}/gtk-2.0/2.10.0/engines/libadwaita.la | ||
28 | } | 31 | } |
29 | 32 | ||
30 | # There could be gnome-theme-highcontrast as well but that requires | 33 | # There could be gnome-theme-highcontrast as well but that requires |