diff options
author | 2024-03-06 19:21:12 -0500 | |
---|---|---|
committer | 2024-03-07 11:46:24 +0000 | |
commit | ed609b72aee1087c292010ed35d121239ba9164a (patch) | |
tree | 5ea9dfabd941c7ce536423285c1620ccb8937e72 /app-portage | |
parent | app-portage/ufed: sync live (diff) | |
download | gentoo-ed609b72aee1087c292010ed35d121239ba9164a.tar.gz gentoo-ed609b72aee1087c292010ed35d121239ba9164a.tar.bz2 gentoo-ed609b72aee1087c292010ed35d121239ba9164a.zip |
app-portage/ufed: mark as LTO-unsafe
Bug: https://bugs.gentoo.org/854864
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/ufed/ufed-0.96.ebuild | 12 | ||||
-rw-r--r-- | app-portage/ufed/ufed-9999.ebuild | 12 |
2 files changed, 20 insertions, 4 deletions
diff --git a/app-portage/ufed/ufed-0.96.ebuild b/app-portage/ufed/ufed-0.96.ebuild index 64a6a2cd5e43..e38eaa82bbed 100644 --- a/app-portage/ufed/ufed-0.96.ebuild +++ b/app-portage/ufed/ufed-0.96.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ else KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" fi -inherit autotools out-of-source +inherit autotools flag-o-matic out-of-source DESCRIPTION="Gentoo Linux USE flags editor" HOMEPAGE="https://wiki.gentoo.org/wiki/Ufed" @@ -35,3 +35,11 @@ src_prepare() { eautoreconf } + +my_src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/854864 + filter-lto + + default +} diff --git a/app-portage/ufed/ufed-9999.ebuild b/app-portage/ufed/ufed-9999.ebuild index e1c8acaafb2d..b1de3f9aca8c 100644 --- a/app-portage/ufed/ufed-9999.ebuild +++ b/app-portage/ufed/ufed-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,7 @@ else KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi -inherit autotools out-of-source +inherit autotools flag-o-matic out-of-source DESCRIPTION="Gentoo Linux USE flags editor" HOMEPAGE="https://wiki.gentoo.org/wiki/Ufed" @@ -35,3 +35,11 @@ src_prepare() { eautoreconf } + +my_src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/854864 + filter-lto + + default +} |