diff options
author | Sam James <sam@gentoo.org> | 2024-03-07 23:48:49 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-07 23:48:49 +0000 |
commit | 081c9a0a2501b3d84239e4b199a0e19a30e196b4 (patch) | |
tree | cb11ba301fbcd34af3e9c27fba3d331acde735c2 /gui-libs | |
parent | dev-libs/utfcpp: Revert "Rebase onto upstream git master" (diff) | |
download | gentoo-081c9a0a2501b3d84239e4b199a0e19a30e196b4.tar.gz gentoo-081c9a0a2501b3d84239e4b199a0e19a30e196b4.tar.bz2 gentoo-081c9a0a2501b3d84239e4b199a0e19a30e196b4.zip |
gui-libs/vte: filter LTO
Upstream don't support LTO & error out on it in meson.build.
Closes: https://bugs.gentoo.org/926156
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'gui-libs')
-rw-r--r-- | gui-libs/vte/vte-0.74.2.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gui-libs/vte/vte-0.74.2.ebuild b/gui-libs/vte/vte-0.74.2.ebuild index 1a44c617716e..403cbcb761c3 100644 --- a/gui-libs/vte/vte-0.74.2.ebuild +++ b/gui-libs/vte/vte-0.74.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -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://wiki.gnome.org/Apps/Terminal/VTE" @@ -69,6 +69,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 debugg) |