diff options
author | 2024-08-10 17:57:24 -0400 | |
---|---|---|
committer | 2024-08-12 15:47:10 -0400 | |
commit | 110127a91a9c35da799d5fb4c5a375b922d0a038 (patch) | |
tree | 4f7391f3e0d9923a9b615dd91966db963f9cbf8b /gui-libs | |
parent | sci-libs/kineto: disable py3.9 (diff) | |
download | gentoo-110127a91a9c35da799d5fb4c5a375b922d0a038.tar.gz gentoo-110127a91a9c35da799d5fb4c5a375b922d0a038.tar.bz2 gentoo-110127a91a9c35da799d5fb4c5a375b922d0a038.zip |
gui-libs/vte: filter LTO
LTO filter missing from this version bump
Signed-off-by: Peak <48360696+PeakKS@users.noreply.github.com>
Closes: https://github.com/gentoo/gentoo/pull/38074
Bug: https://bugs.gentoo.org/926156
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'gui-libs')
-rw-r--r-- | gui-libs/vte/vte-0.76.3.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gui-libs/vte/vte-0.76.3.ebuild b/gui-libs/vte/vte-0.76.3.ebuild index 1d0866faf17d..32ba40bcda9b 100644 --- a/gui-libs/vte/vte-0.76.3.ebuild +++ b/gui-libs/vte/vte-0.76.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..13} ) -inherit gnome.org meson python-any-r1 vala xdg +inherit flag-o-matic gnome.org meson python-any-r1 vala xdg DESCRIPTION="Library providing a virtual terminal emulator widget" HOMEPAGE="https://gitlab.gnome.org/GNOME/vte/" @@ -74,6 +74,9 @@ src_prepare() { } src_configure() { + # Upstream don't support LTO & error out on it in meson.build (bug #926156) + filter-lto + local emesonargs=( -Da11y=true $(meson_use debug) |